Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(123)

Side by Side Diff: cc/surfaces/surfaces_pixeltest.cc

Issue 2795683003: [cc]Replace use of SurfaceFactory with CompositorFrameSinkSupport in tests (Closed)
Patch Set: Fix SurfaceManagerRefTest Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "cc/output/compositor_frame.h" 5 #include "cc/output/compositor_frame.h"
6 #include "cc/quads/render_pass.h" 6 #include "cc/quads/render_pass.h"
7 #include "cc/quads/solid_color_draw_quad.h" 7 #include "cc/quads/solid_color_draw_quad.h"
8 #include "cc/quads/surface_draw_quad.h" 8 #include "cc/quads/surface_draw_quad.h"
9 #include "cc/surfaces/compositor_frame_sink_support.h"
9 #include "cc/surfaces/local_surface_id_allocator.h" 10 #include "cc/surfaces/local_surface_id_allocator.h"
10 #include "cc/surfaces/surface.h" 11 #include "cc/surfaces/surface.h"
11 #include "cc/surfaces/surface_aggregator.h" 12 #include "cc/surfaces/surface_aggregator.h"
12 #include "cc/surfaces/surface_factory.h"
13 #include "cc/surfaces/surface_factory_client.h"
14 #include "cc/surfaces/surface_manager.h" 13 #include "cc/surfaces/surface_manager.h"
15 #include "cc/test/pixel_comparator.h" 14 #include "cc/test/pixel_comparator.h"
16 #include "cc/test/pixel_test.h" 15 #include "cc/test/pixel_test.h"
17 #include "testing/gtest/include/gtest/gtest.h" 16 #include "testing/gtest/include/gtest/gtest.h"
18 17
19 #if !defined(OS_ANDROID) 18 #if !defined(OS_ANDROID)
20 19
21 namespace cc { 20 namespace cc {
22 namespace { 21 namespace {
23 22
24 static constexpr FrameSinkId kArbitraryRootFrameSinkId(1, 1); 23 constexpr FrameSinkId kArbitraryRootFrameSinkId(1, 1);
25 static constexpr FrameSinkId kArbitraryChildFrameSinkId(2, 2); 24 constexpr FrameSinkId kArbitraryChildFrameSinkId(2, 2);
26 static constexpr FrameSinkId kArbitraryLeftFrameSinkId(3, 3); 25 constexpr FrameSinkId kArbitraryLeftFrameSinkId(3, 3);
27 static constexpr FrameSinkId kArbitraryRightFrameSinkId(4, 4); 26 constexpr FrameSinkId kArbitraryRightFrameSinkId(4, 4);
28 27 constexpr bool kIsRoot = true;
29 class EmptySurfaceFactoryClient : public SurfaceFactoryClient { 28 constexpr bool kIsChildRoot = false;
30 public: 29 constexpr bool kHandlesFrameSinkIdInvalidation = true;
31 void ReturnResources(const ReturnedResourceArray& resources) override {} 30 constexpr bool kNeedsSyncPoints = true;
32 void SetBeginFrameSource(BeginFrameSource* begin_frame_source) override {}
33 };
34 31
35 class SurfacesPixelTest : public RendererPixelTest<GLRenderer> { 32 class SurfacesPixelTest : public RendererPixelTest<GLRenderer> {
36 public: 33 public:
37 SurfacesPixelTest() 34 SurfacesPixelTest()
38 : factory_(kArbitraryRootFrameSinkId, &manager_, &client_) {} 35 : support_(nullptr,
39 ~SurfacesPixelTest() override { factory_.EvictSurface(); } 36 &manager_,
37 kArbitraryRootFrameSinkId,
38 kIsRoot,
39 kHandlesFrameSinkIdInvalidation,
40 kNeedsSyncPoints) {}
41 ~SurfacesPixelTest() override { support_.EvictFrame(); }
40 42
41 protected: 43 protected:
42 SurfaceManager manager_; 44 SurfaceManager manager_;
43 LocalSurfaceIdAllocator allocator_; 45 LocalSurfaceIdAllocator allocator_;
44 EmptySurfaceFactoryClient client_; 46 CompositorFrameSinkSupport support_;
45 SurfaceFactory factory_;
46 }; 47 };
47 48
48 SharedQuadState* CreateAndAppendTestSharedQuadState( 49 SharedQuadState* CreateAndAppendTestSharedQuadState(
49 RenderPass* render_pass, 50 RenderPass* render_pass,
50 const gfx::Transform& transform, 51 const gfx::Transform& transform,
51 const gfx::Size& size) { 52 const gfx::Size& size) {
52 const gfx::Size layer_bounds = size; 53 const gfx::Size layer_bounds = size;
53 const gfx::Rect visible_layer_rect = gfx::Rect(size); 54 const gfx::Rect visible_layer_rect = gfx::Rect(size);
54 const gfx::Rect clip_rect = gfx::Rect(size); 55 const gfx::Rect clip_rect = gfx::Rect(size);
55 bool is_clipped = false; 56 bool is_clipped = false;
(...skipping 22 matching lines...) Expand all
78 rect, 79 rect,
79 rect, 80 rect,
80 SK_ColorGREEN, 81 SK_ColorGREEN,
81 force_anti_aliasing_off); 82 force_anti_aliasing_off);
82 83
83 84
84 CompositorFrame root_frame; 85 CompositorFrame root_frame;
85 root_frame.render_pass_list.push_back(std::move(pass)); 86 root_frame.render_pass_list.push_back(std::move(pass));
86 87
87 LocalSurfaceId root_local_surface_id = allocator_.GenerateId(); 88 LocalSurfaceId root_local_surface_id = allocator_.GenerateId();
88 SurfaceId root_surface_id(factory_.frame_sink_id(), root_local_surface_id); 89 SurfaceId root_surface_id(support_.frame_sink_id(), root_local_surface_id);
89 factory_.SubmitCompositorFrame(root_local_surface_id, std::move(root_frame), 90 support_.SubmitCompositorFrame(root_local_surface_id, std::move(root_frame));
90 SurfaceFactory::DrawCallback());
91 91
92 SurfaceAggregator aggregator(&manager_, resource_provider_.get(), true); 92 SurfaceAggregator aggregator(&manager_, resource_provider_.get(), true);
93 CompositorFrame aggregated_frame = aggregator.Aggregate(root_surface_id); 93 CompositorFrame aggregated_frame = aggregator.Aggregate(root_surface_id);
94 94
95 bool discard_alpha = false; 95 bool discard_alpha = false;
96 ExactPixelComparator pixel_comparator(discard_alpha); 96 ExactPixelComparator pixel_comparator(discard_alpha);
97 RenderPassList* pass_list = &aggregated_frame.render_pass_list; 97 RenderPassList* pass_list = &aggregated_frame.render_pass_list;
98 EXPECT_TRUE(RunPixelTest(pass_list, 98 EXPECT_TRUE(RunPixelTest(pass_list,
99 base::FilePath(FILE_PATH_LITERAL("green.png")), 99 base::FilePath(FILE_PATH_LITERAL("green.png")),
100 pixel_comparator)); 100 pixel_comparator));
101 } 101 }
102 102
103 // Draws a frame with simple surface embedding. 103 // Draws a frame with simple surface embedding.
104 TEST_F(SurfacesPixelTest, DrawSimpleAggregatedFrame) { 104 TEST_F(SurfacesPixelTest, DrawSimpleAggregatedFrame) {
105 gfx::Size child_size(200, 100); 105 gfx::Size child_size(200, 100);
106 SurfaceFactory child_factory(kArbitraryChildFrameSinkId, &manager_, &client_); 106 CompositorFrameSinkSupport child_support(
107 nullptr, &manager_, kArbitraryChildFrameSinkId, kIsChildRoot,
108 kHandlesFrameSinkIdInvalidation, kNeedsSyncPoints);
109
107 LocalSurfaceId child_local_surface_id = allocator_.GenerateId(); 110 LocalSurfaceId child_local_surface_id = allocator_.GenerateId();
108 SurfaceId child_surface_id(child_factory.frame_sink_id(), 111 SurfaceId child_surface_id(child_support.frame_sink_id(),
109 child_local_surface_id); 112 child_local_surface_id);
110 LocalSurfaceId root_local_surface_id = allocator_.GenerateId(); 113 LocalSurfaceId root_local_surface_id = allocator_.GenerateId();
111 SurfaceId root_surface_id(factory_.frame_sink_id(), root_local_surface_id); 114 SurfaceId root_surface_id(support_.frame_sink_id(), root_local_surface_id);
112 115
113 { 116 {
114 gfx::Rect rect(device_viewport_size_); 117 gfx::Rect rect(device_viewport_size_);
115 int id = 1; 118 int id = 1;
116 std::unique_ptr<RenderPass> pass = RenderPass::Create(); 119 std::unique_ptr<RenderPass> pass = RenderPass::Create();
117 pass->SetNew(id, rect, rect, gfx::Transform()); 120 pass->SetNew(id, rect, rect, gfx::Transform());
118 121
119 CreateAndAppendTestSharedQuadState( 122 CreateAndAppendTestSharedQuadState(
120 pass.get(), gfx::Transform(), device_viewport_size_); 123 pass.get(), gfx::Transform(), device_viewport_size_);
121 124
122 SurfaceDrawQuad* surface_quad = 125 SurfaceDrawQuad* surface_quad =
123 pass->CreateAndAppendDrawQuad<SurfaceDrawQuad>(); 126 pass->CreateAndAppendDrawQuad<SurfaceDrawQuad>();
124 surface_quad->SetNew(pass->shared_quad_state_list.back(), 127 surface_quad->SetNew(pass->shared_quad_state_list.back(),
125 gfx::Rect(child_size), gfx::Rect(child_size), 128 gfx::Rect(child_size), gfx::Rect(child_size),
126 child_surface_id, SurfaceDrawQuadType::PRIMARY, 129 child_surface_id, SurfaceDrawQuadType::PRIMARY,
127 nullptr); 130 nullptr);
128 131
129 SolidColorDrawQuad* color_quad = 132 SolidColorDrawQuad* color_quad =
130 pass->CreateAndAppendDrawQuad<SolidColorDrawQuad>(); 133 pass->CreateAndAppendDrawQuad<SolidColorDrawQuad>();
131 bool force_anti_aliasing_off = false; 134 bool force_anti_aliasing_off = false;
132 color_quad->SetNew(pass->shared_quad_state_list.back(), 135 color_quad->SetNew(pass->shared_quad_state_list.back(),
133 rect, 136 rect,
134 rect, 137 rect,
135 SK_ColorYELLOW, 138 SK_ColorYELLOW,
136 force_anti_aliasing_off); 139 force_anti_aliasing_off);
137 140
138 CompositorFrame root_frame; 141 CompositorFrame root_frame;
139 root_frame.render_pass_list.push_back(std::move(pass)); 142 root_frame.render_pass_list.push_back(std::move(pass));
140 143
141 factory_.SubmitCompositorFrame(root_local_surface_id, std::move(root_frame), 144 support_.SubmitCompositorFrame(root_local_surface_id,
142 SurfaceFactory::DrawCallback()); 145 std::move(root_frame));
143 } 146 }
144 147
145 { 148 {
146 gfx::Rect rect(child_size); 149 gfx::Rect rect(child_size);
147 int id = 1; 150 int id = 1;
148 std::unique_ptr<RenderPass> pass = RenderPass::Create(); 151 std::unique_ptr<RenderPass> pass = RenderPass::Create();
149 pass->SetNew(id, rect, rect, gfx::Transform()); 152 pass->SetNew(id, rect, rect, gfx::Transform());
150 153
151 CreateAndAppendTestSharedQuadState( 154 CreateAndAppendTestSharedQuadState(
152 pass.get(), gfx::Transform(), child_size); 155 pass.get(), gfx::Transform(), child_size);
153 156
154 SolidColorDrawQuad* color_quad = 157 SolidColorDrawQuad* color_quad =
155 pass->CreateAndAppendDrawQuad<SolidColorDrawQuad>(); 158 pass->CreateAndAppendDrawQuad<SolidColorDrawQuad>();
156 bool force_anti_aliasing_off = false; 159 bool force_anti_aliasing_off = false;
157 color_quad->SetNew(pass->shared_quad_state_list.back(), 160 color_quad->SetNew(pass->shared_quad_state_list.back(),
158 rect, 161 rect,
159 rect, 162 rect,
160 SK_ColorBLUE, 163 SK_ColorBLUE,
161 force_anti_aliasing_off); 164 force_anti_aliasing_off);
162 165
163 CompositorFrame child_frame; 166 CompositorFrame child_frame;
164 child_frame.render_pass_list.push_back(std::move(pass)); 167 child_frame.render_pass_list.push_back(std::move(pass));
165 168
166 child_factory.SubmitCompositorFrame(child_local_surface_id, 169 child_support.SubmitCompositorFrame(child_local_surface_id,
167 std::move(child_frame), 170 std::move(child_frame));
168 SurfaceFactory::DrawCallback());
169 } 171 }
170 172
171 SurfaceAggregator aggregator(&manager_, resource_provider_.get(), true); 173 SurfaceAggregator aggregator(&manager_, resource_provider_.get(), true);
172 CompositorFrame aggregated_frame = aggregator.Aggregate(root_surface_id); 174 CompositorFrame aggregated_frame = aggregator.Aggregate(root_surface_id);
173 175
174 bool discard_alpha = false; 176 bool discard_alpha = false;
175 ExactPixelComparator pixel_comparator(discard_alpha); 177 ExactPixelComparator pixel_comparator(discard_alpha);
176 RenderPassList* pass_list = &aggregated_frame.render_pass_list; 178 RenderPassList* pass_list = &aggregated_frame.render_pass_list;
177 EXPECT_TRUE(RunPixelTest(pass_list, 179 EXPECT_TRUE(RunPixelTest(pass_list,
178 base::FilePath(FILE_PATH_LITERAL("blue_yellow.png")), 180 base::FilePath(FILE_PATH_LITERAL("blue_yellow.png")),
179 pixel_comparator)); 181 pixel_comparator));
180 182
181 child_factory.EvictSurface(); 183 child_support.EvictFrame();
182 } 184 }
183 185
184 // Tests a surface quad that has a non-identity transform into its pass. 186 // Tests a surface quad that has a non-identity transform into its pass.
185 TEST_F(SurfacesPixelTest, DrawAggregatedFrameWithSurfaceTransforms) { 187 TEST_F(SurfacesPixelTest, DrawAggregatedFrameWithSurfaceTransforms) {
186 gfx::Size child_size(100, 200); 188 gfx::Size child_size(100, 200);
187 gfx::Size quad_size(100, 100); 189 gfx::Size quad_size(100, 100);
188 // Structure: 190 // Structure:
189 // root (200x200) -> left_child (100x200 @ 0x0, 191 // root (200x200) -> left_child (100x200 @ 0x0,
190 // right_child (100x200 @ 0x100) 192 // right_child (100x200 @ 0x100)
191 // left_child -> top_green_quad (100x100 @ 0x0), 193 // left_child -> top_green_quad (100x100 @ 0x0),
192 // bottom_blue_quad (100x100 @ 0x100) 194 // bottom_blue_quad (100x100 @ 0x100)
193 // right_child -> top_blue_quad (100x100 @ 0x0), 195 // right_child -> top_blue_quad (100x100 @ 0x0),
194 // bottom_green_quad (100x100 @ 0x100) 196 // bottom_green_quad (100x100 @ 0x100)
195 SurfaceFactory left_factory(kArbitraryLeftFrameSinkId, &manager_, &client_); 197 CompositorFrameSinkSupport left_support(
196 SurfaceFactory right_factory(kArbitraryRightFrameSinkId, &manager_, &client_); 198 nullptr, &manager_, kArbitraryLeftFrameSinkId, kIsChildRoot,
199 kHandlesFrameSinkIdInvalidation, kNeedsSyncPoints);
200 CompositorFrameSinkSupport right_support(
201 nullptr, &manager_, kArbitraryRightFrameSinkId, kIsChildRoot,
202 kHandlesFrameSinkIdInvalidation, kNeedsSyncPoints);
197 LocalSurfaceId left_child_local_id = allocator_.GenerateId(); 203 LocalSurfaceId left_child_local_id = allocator_.GenerateId();
198 SurfaceId left_child_id(left_factory.frame_sink_id(), left_child_local_id); 204 SurfaceId left_child_id(left_support.frame_sink_id(), left_child_local_id);
199 LocalSurfaceId right_child_local_id = allocator_.GenerateId(); 205 LocalSurfaceId right_child_local_id = allocator_.GenerateId();
200 SurfaceId right_child_id(right_factory.frame_sink_id(), right_child_local_id); 206 SurfaceId right_child_id(right_support.frame_sink_id(), right_child_local_id);
201 LocalSurfaceId root_local_surface_id = allocator_.GenerateId(); 207 LocalSurfaceId root_local_surface_id = allocator_.GenerateId();
202 SurfaceId root_surface_id(factory_.frame_sink_id(), root_local_surface_id); 208 SurfaceId root_surface_id(support_.frame_sink_id(), root_local_surface_id);
203 209
204 { 210 {
205 gfx::Rect rect(device_viewport_size_); 211 gfx::Rect rect(device_viewport_size_);
206 int id = 1; 212 int id = 1;
207 std::unique_ptr<RenderPass> pass = RenderPass::Create(); 213 std::unique_ptr<RenderPass> pass = RenderPass::Create();
208 pass->SetNew(id, rect, rect, gfx::Transform()); 214 pass->SetNew(id, rect, rect, gfx::Transform());
209 215
210 gfx::Transform surface_transform; 216 gfx::Transform surface_transform;
211 CreateAndAppendTestSharedQuadState( 217 CreateAndAppendTestSharedQuadState(
212 pass.get(), surface_transform, device_viewport_size_); 218 pass.get(), surface_transform, device_viewport_size_);
(...skipping 12 matching lines...) Expand all
225 SurfaceDrawQuad* right_surface_quad = 231 SurfaceDrawQuad* right_surface_quad =
226 pass->CreateAndAppendDrawQuad<SurfaceDrawQuad>(); 232 pass->CreateAndAppendDrawQuad<SurfaceDrawQuad>();
227 right_surface_quad->SetNew(pass->shared_quad_state_list.back(), 233 right_surface_quad->SetNew(pass->shared_quad_state_list.back(),
228 gfx::Rect(child_size), gfx::Rect(child_size), 234 gfx::Rect(child_size), gfx::Rect(child_size),
229 right_child_id, SurfaceDrawQuadType::PRIMARY, 235 right_child_id, SurfaceDrawQuadType::PRIMARY,
230 nullptr); 236 nullptr);
231 237
232 CompositorFrame root_frame; 238 CompositorFrame root_frame;
233 root_frame.render_pass_list.push_back(std::move(pass)); 239 root_frame.render_pass_list.push_back(std::move(pass));
234 240
235 factory_.SubmitCompositorFrame(root_local_surface_id, std::move(root_frame), 241 support_.SubmitCompositorFrame(root_local_surface_id,
236 SurfaceFactory::DrawCallback()); 242 std::move(root_frame));
237 } 243 }
238 244
239 { 245 {
240 gfx::Rect rect(child_size); 246 gfx::Rect rect(child_size);
241 int id = 1; 247 int id = 1;
242 std::unique_ptr<RenderPass> pass = RenderPass::Create(); 248 std::unique_ptr<RenderPass> pass = RenderPass::Create();
243 pass->SetNew(id, rect, rect, gfx::Transform()); 249 pass->SetNew(id, rect, rect, gfx::Transform());
244 250
245 CreateAndAppendTestSharedQuadState( 251 CreateAndAppendTestSharedQuadState(
246 pass.get(), gfx::Transform(), child_size); 252 pass.get(), gfx::Transform(), child_size);
(...skipping 11 matching lines...) Expand all
258 pass->CreateAndAppendDrawQuad<SolidColorDrawQuad>(); 264 pass->CreateAndAppendDrawQuad<SolidColorDrawQuad>();
259 bottom_color_quad->SetNew(pass->shared_quad_state_list.back(), 265 bottom_color_quad->SetNew(pass->shared_quad_state_list.back(),
260 gfx::Rect(0, 100, 100, 100), 266 gfx::Rect(0, 100, 100, 100),
261 gfx::Rect(0, 100, 100, 100), 267 gfx::Rect(0, 100, 100, 100),
262 SK_ColorBLUE, 268 SK_ColorBLUE,
263 force_anti_aliasing_off); 269 force_anti_aliasing_off);
264 270
265 CompositorFrame child_frame; 271 CompositorFrame child_frame;
266 child_frame.render_pass_list.push_back(std::move(pass)); 272 child_frame.render_pass_list.push_back(std::move(pass));
267 273
268 left_factory.SubmitCompositorFrame(left_child_local_id, 274 left_support.SubmitCompositorFrame(left_child_local_id,
269 std::move(child_frame), 275 std::move(child_frame));
270 SurfaceFactory::DrawCallback());
271 } 276 }
272 277
273 { 278 {
274 gfx::Rect rect(child_size); 279 gfx::Rect rect(child_size);
275 int id = 1; 280 int id = 1;
276 std::unique_ptr<RenderPass> pass = RenderPass::Create(); 281 std::unique_ptr<RenderPass> pass = RenderPass::Create();
277 pass->SetNew(id, rect, rect, gfx::Transform()); 282 pass->SetNew(id, rect, rect, gfx::Transform());
278 283
279 CreateAndAppendTestSharedQuadState( 284 CreateAndAppendTestSharedQuadState(
280 pass.get(), gfx::Transform(), child_size); 285 pass.get(), gfx::Transform(), child_size);
(...skipping 11 matching lines...) Expand all
292 pass->CreateAndAppendDrawQuad<SolidColorDrawQuad>(); 297 pass->CreateAndAppendDrawQuad<SolidColorDrawQuad>();
293 bottom_color_quad->SetNew(pass->shared_quad_state_list.back(), 298 bottom_color_quad->SetNew(pass->shared_quad_state_list.back(),
294 gfx::Rect(0, 100, 100, 100), 299 gfx::Rect(0, 100, 100, 100),
295 gfx::Rect(0, 100, 100, 100), 300 gfx::Rect(0, 100, 100, 100),
296 SK_ColorGREEN, 301 SK_ColorGREEN,
297 force_anti_aliasing_off); 302 force_anti_aliasing_off);
298 303
299 CompositorFrame child_frame; 304 CompositorFrame child_frame;
300 child_frame.render_pass_list.push_back(std::move(pass)); 305 child_frame.render_pass_list.push_back(std::move(pass));
301 306
302 right_factory.SubmitCompositorFrame(right_child_local_id, 307 right_support.SubmitCompositorFrame(right_child_local_id,
303 std::move(child_frame), 308 std::move(child_frame));
304 SurfaceFactory::DrawCallback());
305 } 309 }
306 310
307 SurfaceAggregator aggregator(&manager_, resource_provider_.get(), true); 311 SurfaceAggregator aggregator(&manager_, resource_provider_.get(), true);
308 CompositorFrame aggregated_frame = aggregator.Aggregate(root_surface_id); 312 CompositorFrame aggregated_frame = aggregator.Aggregate(root_surface_id);
309 313
310 bool discard_alpha = false; 314 bool discard_alpha = false;
311 ExactPixelComparator pixel_comparator(discard_alpha); 315 ExactPixelComparator pixel_comparator(discard_alpha);
312 RenderPassList* pass_list = &aggregated_frame.render_pass_list; 316 RenderPassList* pass_list = &aggregated_frame.render_pass_list;
313 EXPECT_TRUE(RunPixelTest( 317 EXPECT_TRUE(RunPixelTest(
314 pass_list, 318 pass_list,
315 base::FilePath(FILE_PATH_LITERAL("four_blue_green_checkers.png")), 319 base::FilePath(FILE_PATH_LITERAL("four_blue_green_checkers.png")),
316 pixel_comparator)); 320 pixel_comparator));
317 321
318 left_factory.EvictSurface(); 322 left_support.EvictFrame();
319 right_factory.EvictSurface(); 323 right_support.EvictFrame();
320 } 324 }
321 325
322 } // namespace 326 } // namespace
323 } // namespace cc 327 } // namespace cc
324 328
325 #endif // !defined(OS_ANDROID) 329 #endif // !defined(OS_ANDROID)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698