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

Unified Diff: mojo/services/window_manager/window_manager_service_impl.h

Issue 418983002: Nukes view_manager namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: resolve merge Created 6 years, 5 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
Index: mojo/services/window_manager/window_manager_service_impl.h
diff --git a/mojo/services/window_manager/window_manager_service_impl.h b/mojo/services/window_manager/window_manager_service_impl.h
index 4d61968c73a98832461e6e615f7b5a19bb897a58..5756222db9151e491250320cb5f9ec81f60bfc18 100644
--- a/mojo/services/window_manager/window_manager_service_impl.h
+++ b/mojo/services/window_manager/window_manager_service_impl.h
@@ -19,24 +19,21 @@ class WindowManagerServiceImpl : public InterfaceImpl<WindowManagerService> {
virtual ~WindowManagerServiceImpl();
void NotifyReady();
- void NotifyNodeFocused(view_manager::Id new_focused_id,
- view_manager::Id old_focused_id);
- void NotifyWindowActivated(view_manager::Id new_active_id,
- view_manager::Id old_active_id);
+ void NotifyNodeFocused(Id new_focused_id, Id old_focused_id);
+ void NotifyWindowActivated(Id new_active_id, Id old_active_id);
private:
// Overridden from WindowManagerService:
- virtual void OpenWindow(
- const Callback<void(view_manager::Id)>& callback) MOJO_OVERRIDE;
+ virtual void OpenWindow(const Callback<void(Id)>& callback) MOJO_OVERRIDE;
virtual void OpenWindowWithURL(
const String& url,
- const Callback<void(view_manager::Id)>& callback) MOJO_OVERRIDE;
- virtual void SetCapture(view_manager::Id node,
+ const Callback<void(Id)>& callback) MOJO_OVERRIDE;
+ virtual void SetCapture(Id node,
const Callback<void(bool)>& callback) MOJO_OVERRIDE;
- virtual void FocusWindow(view_manager::Id node,
+ virtual void FocusWindow(Id node,
const Callback<void(bool)>& callback) MOJO_OVERRIDE;
virtual void ActivateWindow(
- view_manager::Id node,
+ Id node,
const Callback<void(bool)>& callback) MOJO_OVERRIDE;
// Overridden from InterfaceImpl:
« no previous file with comments | « mojo/services/window_manager/window_manager_app.cc ('k') | mojo/services/window_manager/window_manager_service_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698