Flutter Engine
The Flutter Engine
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
[
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
[
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Properties
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Related Functions
:
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
y
z
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
v
w
y
Enumerator
b
c
d
e
f
g
h
k
l
m
n
p
r
s
t
u
v
w
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
third_party
skia
tools
skp
page_sets
skia_motionmarksuits_desktop.py
Go to the documentation of this file.
1
# Copyright 2021 The Chromium Authors. All rights reserved.
2
# Use of this source code is governed by a BSD-style license that can be
3
# found in the LICENSE file.
4
# pylint: disable=W0401,W0614
5
6
7
from
telemetry
import
story
8
from
telemetry.page
import
page
as
page_module
9
from
telemetry.page
import
shared_page_state
10
11
12
class
SkiaBuildbotDesktopPage
(page_module.Page):
13
14
def
__init__
(self, url, page_set):
15
super(SkiaBuildbotDesktopPage, self).
__init__
(
16
url=url,
17
name=url,
18
page_set=page_set,
19
shared_page_state_class=shared_page_state.SharedDesktopPageState)
20
self.
archive_data_file
=
'data/skia_motionmarksuits_desktop.json'
21
22
def
RunNavigateSteps
(self, action_runner):
23
action_runner.Navigate(self.url, timeout_in_seconds=120)
24
25
26
class
SkiaMotionmarksuitsDesktopPageSet
(story.StorySet):
27
28
""" Pages designed to represent the median, not highly optimized web """
29
30
def
__init__
(self):
31
super(SkiaMotionmarksuitsDesktopPageSet, self).
__init__
(
32
archive_data_file=
'data/skia_motionmarksuits_desktop.json'
)
33
34
urls_list = [
35
# Why: from skbug.com/12292
36
(
'https://storage.googleapis.com/skia-recreateskps-bot-hosted-pages/'
37
'desk_motionmarksuits.svg'
),
38
]
39
40
for
url
in
urls_list:
41
self.AddStory(
SkiaBuildbotDesktopPage
(url, self))
page_sets.skia_motionmarksuits_desktop.SkiaBuildbotDesktopPage
Definition:
skia_motionmarksuits_desktop.py:12
page_sets.skia_motionmarksuits_desktop.SkiaBuildbotDesktopPage.RunNavigateSteps
def RunNavigateSteps(self, action_runner)
Definition:
skia_motionmarksuits_desktop.py:22
page_sets.skia_motionmarksuits_desktop.SkiaBuildbotDesktopPage.__init__
def __init__(self, url, page_set)
Definition:
skia_motionmarksuits_desktop.py:14
page_sets.skia_motionmarksuits_desktop.SkiaBuildbotDesktopPage.archive_data_file
archive_data_file
Definition:
skia_motionmarksuits_desktop.py:20
page_sets.skia_motionmarksuits_desktop.SkiaMotionmarksuitsDesktopPageSet
Definition:
skia_motionmarksuits_desktop.py:26
page_sets.skia_motionmarksuits_desktop.SkiaMotionmarksuitsDesktopPageSet.__init__
def __init__(self)
Definition:
skia_motionmarksuits_desktop.py:30
Generated on Sun Jun 23 2024 21:56:51 for Flutter Engine by
1.9.4