| 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() {}
|
|
|