summaryrefslogtreecommitdiffstats
path: root/content/browser/frame_host/frame_mojo_shell.h
diff options
context:
space:
mode:
Diffstat (limited to 'content/browser/frame_host/frame_mojo_shell.h')
-rw-r--r--content/browser/frame_host/frame_mojo_shell.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/content/browser/frame_host/frame_mojo_shell.h b/content/browser/frame_host/frame_mojo_shell.h
index fa8f6d8..bea71dc 100644
--- a/content/browser/frame_host/frame_mojo_shell.h
+++ b/content/browser/frame_host/frame_mojo_shell.h
@@ -7,8 +7,8 @@
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
+#include "mojo/public/cpp/bindings/binding_set.h"
#include "mojo/public/cpp/bindings/interface_request.h"
-#include "mojo/public/cpp/bindings/weak_binding_set.h"
#include "mojo/shell/public/interfaces/shell.mojom.h"
namespace content {
@@ -41,11 +41,11 @@ class FrameMojoShell : public mojo::shell::mojom::Shell {
ServiceRegistryImpl* GetServiceRegistry();
RenderFrameHost* frame_host_;
- mojo::WeakBindingSet<mojo::shell::mojom::Shell> bindings_;
+ mojo::BindingSet<mojo::shell::mojom::Shell> bindings_;
// ServiceRegistry providing browser services to connected applications.
scoped_ptr<ServiceRegistryImpl> service_registry_;
- mojo::WeakBindingSet<mojo::shell::mojom::InterfaceProvider>
+ mojo::BindingSet<mojo::shell::mojom::InterfaceProvider>
service_provider_bindings_;
DISALLOW_COPY_AND_ASSIGN(FrameMojoShell);