diff options
author | fsamuel <fsamuel@chromium.org> | 2015-09-14 15:10:17 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-09-14 22:11:02 +0000 |
commit | 80ad950ec6456f9aa0214d0b2c0cfd1bcdb0fae3 (patch) | |
tree | 1863787b3429efcdec8b7679d5adf1522deaa085 /mojo/gles2 | |
parent | ca01f9e55651e4a7285f551e83bd561b01787c19 (diff) | |
download | chromium_src-80ad950ec6456f9aa0214d0b2c0cfd1bcdb0fae3.zip chromium_src-80ad950ec6456f9aa0214d0b2c0cfd1bcdb0fae3.tar.gz chromium_src-80ad950ec6456f9aa0214d0b2c0cfd1bcdb0fae3.tar.bz2 |
Mandoline: Rename components/view_manager to components/mus
The name View Manager doesn't really capture the extent of what we'd like to
accomplish here. Renaming this directory to mus (Mandoline UI Services). Some
classes and namespaces need to change to but I'll do that in a separate CL.
BUG=531533
TBR=jochen@chromium.org for components rename.
Review URL: https://codereview.chromium.org/1344573002
Cr-Commit-Position: refs/heads/master@{#348735}
Diffstat (limited to 'mojo/gles2')
-rw-r--r-- | mojo/gles2/BUILD.gn | 6 | ||||
-rw-r--r-- | mojo/gles2/DEPS | 4 | ||||
-rw-r--r-- | mojo/gles2/command_buffer_client_impl.cc | 6 | ||||
-rw-r--r-- | mojo/gles2/command_buffer_client_impl.h | 2 |
4 files changed, 9 insertions, 9 deletions
diff --git a/mojo/gles2/BUILD.gn b/mojo/gles2/BUILD.gn index 85f4ca6..cfb331a 100644 --- a/mojo/gles2/BUILD.gn +++ b/mojo/gles2/BUILD.gn @@ -18,7 +18,7 @@ source_set("headers") { public_deps = [ "//base", - "//components/view_manager/public/interfaces", + "//components/mus/public/interfaces", "//gpu/command_buffer/client", "//gpu/command_buffer/client:gles2_implementation", "//gpu/command_buffer/common", @@ -51,8 +51,8 @@ source_set("gles2") { deps = [ "//base", "//base/third_party/dynamic_annotations", - "//components/view_manager/gles2:lib", - "//components/view_manager/public/interfaces", + "//components/mus/gles2:lib", + "//components/mus/public/interfaces", "//gpu/command_buffer/client", "//gpu/command_buffer/client:gles2_cmd_helper", "//gpu/command_buffer/client:gles2_implementation", diff --git a/mojo/gles2/DEPS b/mojo/gles2/DEPS index 4f1319d..492e5181 100644 --- a/mojo/gles2/DEPS +++ b/mojo/gles2/DEPS @@ -1,5 +1,5 @@ include_rules = [ - "+components/view_manager/gles2", - "+components/view_manager/public", + "+components/mus/gles2", + "+components/mus/public", "+gpu", ] diff --git a/mojo/gles2/command_buffer_client_impl.cc b/mojo/gles2/command_buffer_client_impl.cc index 61d6422..b639f6e 100644 --- a/mojo/gles2/command_buffer_client_impl.cc +++ b/mojo/gles2/command_buffer_client_impl.cc @@ -8,9 +8,9 @@ #include "base/logging.h" #include "base/process/process_handle.h" -#include "components/view_manager/gles2/command_buffer_type_conversions.h" -#include "components/view_manager/gles2/mojo_buffer_backing.h" -#include "components/view_manager/gles2/mojo_gpu_memory_buffer.h" +#include "components/mus/gles2/command_buffer_type_conversions.h" +#include "components/mus/gles2/mojo_buffer_backing.h" +#include "components/mus/gles2/mojo_gpu_memory_buffer.h" #include "gpu/command_buffer/service/image_factory.h" #include "mojo/platform_handle/platform_handle_functions.h" diff --git a/mojo/gles2/command_buffer_client_impl.h b/mojo/gles2/command_buffer_client_impl.h index 1ec0f1f..62898de 100644 --- a/mojo/gles2/command_buffer_client_impl.h +++ b/mojo/gles2/command_buffer_client_impl.h @@ -9,7 +9,7 @@ #include "base/macros.h" #include "base/memory/scoped_ptr.h" -#include "components/view_manager/public/interfaces/command_buffer.mojom.h" +#include "components/mus/public/interfaces/command_buffer.mojom.h" #include "gpu/command_buffer/client/gpu_control.h" #include "gpu/command_buffer/common/command_buffer.h" #include "gpu/command_buffer/common/command_buffer_shared.h" |