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

Unified Diff: mojo/services/public/cpp/view_manager/window_manager_delegate.h

Issue 460863002: Rename Node to View in the View Manager mojom & client lib. Service TBD. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 4 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/public/cpp/view_manager/window_manager_delegate.h
diff --git a/mojo/services/public/cpp/view_manager/window_manager_delegate.h b/mojo/services/public/cpp/view_manager/window_manager_delegate.h
index b3280ed9830afd22b7e6be9c723e14fda3e76e4b..85fb4357a2dc08eb24cf7ec93891f31047ec3058 100644
--- a/mojo/services/public/cpp/view_manager/window_manager_delegate.h
+++ b/mojo/services/public/cpp/view_manager/window_manager_delegate.h
@@ -10,19 +10,19 @@
namespace mojo {
-class Node;
+class View;
// A WindowManagerDelegate is provided by the application embedded at the
-// service root node.
+// service root view.
class WindowManagerDelegate {
public:
- // Create an appropriate node to embed |url|.
+ // Create an appropriate view to embed |url|.
virtual void Embed(const String& url,
InterfaceRequest<ServiceProvider> service_provider) {}
- // Dispatch the supplied input event to the appropriate node (taking into
+ // Dispatch the supplied input event to the appropriate view (taking into
// account focus, activation, modality, etc.).
- virtual void DispatchEvent(Node* target, EventPtr event) = 0;
+ virtual void DispatchEvent(View* target, EventPtr event) = 0;
protected:
virtual ~WindowManagerDelegate() {}
« no previous file with comments | « mojo/services/public/cpp/view_manager/view_observer.h ('k') | mojo/services/public/interfaces/view_manager/view_manager.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698