diff options
author | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-14 00:52:31 +0000 |
---|---|---|
committer | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-14 00:52:31 +0000 |
commit | 8232f8fd4ee418e764256fe9c8ee7f8926730dae (patch) | |
tree | 32cdaddf6783972183e96ca3595620a76df6c6f5 /PRESUBMIT.py | |
parent | 3027810d9c2eed0c28b21cd85bb36986ef1ad118 (diff) | |
download | chromium_src-8232f8fd4ee418e764256fe9c8ee7f8926730dae.zip chromium_src-8232f8fd4ee418e764256fe9c8ee7f8926730dae.tar.gz chromium_src-8232f8fd4ee418e764256fe9c8ee7f8926730dae.tar.bz2 |
Remove uses of WebGraphicsContext3D from ui/compositor
This removes all uses of blink::WebGraphicsContext3D as the context type
from ui/compositor/ and dependent code, excluding some test harness setup.
The compositor implementation uses gpu::gles2::GLES2Interface*, defined in
gpu/command_buffer/client/, as the context type to avoid dependencies on
the blink repository.
BUG=181120
Review URL: https://codereview.chromium.org/107513008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@240826 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'PRESUBMIT.py')
-rw-r--r-- | PRESUBMIT.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/PRESUBMIT.py b/PRESUBMIT.py index 34bf0f6..e4db302 100644 --- a/PRESUBMIT.py +++ b/PRESUBMIT.py @@ -872,7 +872,8 @@ def _CheckSpamLogging(input_api, output_api): r"^chrome[\\\/]renderer[\\\/]extensions[\\\/]" r"logging_native_handler\.cc$", r"^remoting[\\\/]base[\\\/]logging\.h$", - r"^sandbox[\\\/]linux[\\\/].*",)) + r"^sandbox[\\\/]linux[\\\/].*", + r"^ui[\\\/]aura[\\\/]bench[\\\/]bench_main\.cc$",)) source_file_filter = lambda x: input_api.FilterSourceFile( x, white_list=(file_inclusion_pattern,), black_list=black_list) |