| Index: mojo/services/public/cpp/view_manager/node.h
|
| diff --git a/mojo/services/public/cpp/view_manager/node.h b/mojo/services/public/cpp/view_manager/node.h
|
| index 3c3ca83cbda02cdbbfd913a105b8ade8f145425b..39ad516da314b9c7026cd2645fd619140b9ef650 100644
|
| --- a/mojo/services/public/cpp/view_manager/node.h
|
| +++ b/mojo/services/public/cpp/view_manager/node.h
|
| @@ -10,12 +10,14 @@
|
| #include "base/basictypes.h"
|
| #include "base/observer_list.h"
|
| #include "mojo/public/cpp/bindings/array.h"
|
| +#include "mojo/public/interfaces/application/service_provider.mojom.h"
|
| #include "mojo/services/public/cpp/view_manager/types.h"
|
| #include "mojo/services/public/interfaces/view_manager/view_manager_constants.mojom.h"
|
| #include "ui/gfx/geometry/rect.h"
|
|
|
| namespace mojo {
|
|
|
| +class ExportedServiceRegistry;
|
| class View;
|
| class ViewManager;
|
| class NodeObserver;
|
| @@ -73,6 +75,9 @@ class Node {
|
|
|
| // Embedding.
|
| void Embed(const String& url);
|
| + scoped_ptr<ServiceProvider> Embed(
|
| + const String& url,
|
| + scoped_ptr<ExportedServiceRegistry> exported_services);
|
|
|
| protected:
|
| // This class is subclassed only by test classes that provide a public ctor.
|
|
|