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

Unified Diff: components/mus/mus_app.h

Issue 1340983002: Mandoline UI Process: Update namespaces and file names (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/mus/main.cc ('k') | components/mus/mus_app.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/mus/mus_app.h
diff --git a/components/mus/view_manager_app.h b/components/mus/mus_app.h
similarity index 79%
rename from components/mus/view_manager_app.h
rename to components/mus/mus_app.h
index 3f65f5144681bdc2f8ee1523e6be293b3db2f21e..db528e1b7cfe94bbdbf29edf6c729791c978d051 100644
--- a/components/mus/view_manager_app.h
+++ b/components/mus/mus_app.h
@@ -19,35 +19,30 @@
#include "mojo/common/tracing_impl.h"
#include "mojo/common/weak_binding_set.h"
-namespace gles2 {
-class GpuState;
-}
-
namespace mojo {
class ApplicationImpl;
}
-namespace surfaces {
-class SurfacesScheduler;
-class SurfacesState;
-}
-
namespace ui {
class PlatformEventSource;
}
-namespace view_manager {
+namespace mus {
class ConnectionManager;
+class GpuState;
+class SurfacesScheduler;
+class SurfacesState;
-class ViewManagerApp : public mojo::ApplicationDelegate,
- public ConnectionManagerDelegate,
- public mojo::InterfaceFactory<mojo::ViewTreeHostFactory>,
- public mojo::InterfaceFactory<mojo::Gpu>,
- public mojo::ViewTreeHostFactory {
+class MandolineUIServicesApp
+ : public mojo::ApplicationDelegate,
+ public ConnectionManagerDelegate,
+ public mojo::InterfaceFactory<mojo::ViewTreeHostFactory>,
+ public mojo::InterfaceFactory<mojo::Gpu>,
+ public mojo::ViewTreeHostFactory {
public:
- ViewManagerApp();
- ~ViewManagerApp() override;
+ MandolineUIServicesApp();
+ ~MandolineUIServicesApp() override;
private:
// ApplicationDelegate:
@@ -60,14 +55,14 @@ class ViewManagerApp : public mojo::ApplicationDelegate,
ClientConnection* CreateClientConnectionForEmbedAtView(
ConnectionManager* connection_manager,
mojo::InterfaceRequest<mojo::ViewTree> tree_request,
- mojo::ConnectionSpecificId creator_id,
+ ConnectionSpecificId creator_id,
mojo::URLRequestPtr request,
const ViewId& root_id,
uint32_t policy_bitmask) override;
ClientConnection* CreateClientConnectionForEmbedAtView(
ConnectionManager* connection_manager,
mojo::InterfaceRequest<mojo::ViewTree> tree_request,
- mojo::ConnectionSpecificId creator_id,
+ ConnectionSpecificId creator_id,
const ViewId& root_id,
uint32_t policy_bitmask,
mojo::ViewTreeClientPtr client) override;
@@ -90,16 +85,16 @@ class ViewManagerApp : public mojo::ApplicationDelegate,
mojo::ApplicationImpl* app_impl_;
scoped_ptr<ConnectionManager> connection_manager_;
mojo::TracingImpl tracing_;
- scoped_refptr<gles2::GpuState> gpu_state_;
+ scoped_refptr<GpuState> gpu_state_;
scoped_ptr<ui::PlatformEventSource> event_source_;
bool is_headless_;
// Surfaces
- scoped_refptr<surfaces::SurfacesState> surfaces_state_;
+ scoped_refptr<SurfacesState> surfaces_state_;
- DISALLOW_COPY_AND_ASSIGN(ViewManagerApp);
+ DISALLOW_COPY_AND_ASSIGN(MandolineUIServicesApp);
};
-} // namespace view_manager
+} // namespace mus
#endif // COMPONENTS_MUS_VIEW_MANAGER_APP_H_
« no previous file with comments | « components/mus/main.cc ('k') | components/mus/mus_app.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698