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

Side by Side Diff: Tools/Scripts/webkitpy/layout_tests/port/chromium.py

Issue 22454003: Support subtitles for native fullscreen video (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased Created 7 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « Source/web/WebViewImpl.h ('k') | public/web/WebRuntimeFeatures.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (C) 2010 Google Inc. All rights reserved. 1 # Copyright (C) 2010 Google Inc. All rights reserved.
2 # 2 #
3 # Redistribution and use in source and binary forms, with or without 3 # Redistribution and use in source and binary forms, with or without
4 # modification, are permitted provided that the following conditions are 4 # modification, are permitted provided that the following conditions are
5 # met: 5 # met:
6 # 6 #
7 # * Redistributions of source code must retain the above copyright 7 # * Redistributions of source code must retain the above copyright
8 # notice, this list of conditions and the following disclaimer. 8 # notice, this list of conditions and the following disclaimer.
9 # * Redistributions in binary form must reproduce the above 9 # * Redistributions in binary form must reproduce the above
10 # copyright notice, this list of conditions and the following disclaimer 10 # copyright notice, this list of conditions and the following disclaimer
(...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 ['--enable-threaded-compositing']), 355 ['--enable-threaded-compositing']),
356 VirtualTestSuite('virtual/web-animations-css/animations', 356 VirtualTestSuite('virtual/web-animations-css/animations',
357 'animations', 357 'animations',
358 ['--enable-web-animations-css']), 358 ['--enable-web-animations-css']),
359 VirtualTestSuite('virtual/stable/webexposed', 359 VirtualTestSuite('virtual/stable/webexposed',
360 'webexposed', 360 'webexposed',
361 ['--stable-release-mode']), 361 ['--stable-release-mode']),
362 VirtualTestSuite('virtual/stable/media', 362 VirtualTestSuite('virtual/stable/media',
363 'media/stable', 363 'media/stable',
364 ['--stable-release-mode']), 364 ['--stable-release-mode']),
365 VirtualTestSuite('virtual/android/fullscreen',
366 'fullscreen',
367 ['--force-compositing-mode', '--allow-webui-composi ting', '--enable-threaded-compositing',
368 '--enable-fixed-position-compositing', '--enable-a ccelerated-overflow-scroll', '--enable-accelerated-scrollable-frames',
369 '--enable-composited-scrolling-for-frames', '--ena ble-gesture-tap-highlight', '--enable-pinch',
370 '--enable-overlay-fullscreen-video', '--enable-ove rlay-scrollbars', '--enable-overscroll-notifications',
371 '--enable-fixed-layout', '--enable-viewport', '--d isable-canvas-aa',
372 '--disable-composited-antialiasing']),
365 ] 373 ]
366 374
367 # 375 #
368 # PROTECTED METHODS 376 # PROTECTED METHODS
369 # 377 #
370 # These routines should only be called by other methods in this file 378 # These routines should only be called by other methods in this file
371 # or any subclasses. 379 # or any subclasses.
372 # 380 #
373 381
374 def _build_path(self, *comps): 382 def _build_path(self, *comps):
(...skipping 30 matching lines...) Expand all
405 # That's fine because, in this case, we must already be running the 413 # That's fine because, in this case, we must already be running the
406 # most up-to-date one. 414 # most up-to-date one.
407 except OSError: 415 except OSError:
408 pass 416 pass
409 return True 417 return True
410 418
411 def _chromium_baseline_path(self, platform): 419 def _chromium_baseline_path(self, platform):
412 if platform is None: 420 if platform is None:
413 platform = self.name() 421 platform = self.name()
414 return self.path_from_webkit_base('LayoutTests', 'platform', platform) 422 return self.path_from_webkit_base('LayoutTests', 'platform', platform)
OLDNEW
« no previous file with comments | « Source/web/WebViewImpl.h ('k') | public/web/WebRuntimeFeatures.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698