summaryrefslogtreecommitdiffstats
path: root/content/gpu
diff options
context:
space:
mode:
authoryzshen <yzshen@chromium.org>2016-02-24 13:20:38 -0800
committerCommit bot <commit-bot@chromium.org>2016-02-24 21:21:37 +0000
commit632d319842096e6998d174e2f251865979ce2b72 (patch)
treed968b302a35fa7dafdec12543de11be792b39be5 /content/gpu
parentaf3183b9beff7b9b04d8ef78e065cde88c227d4d (diff)
downloadchromium_src-632d319842096e6998d174e2f251865979ce2b72.zip
chromium_src-632d319842096e6998d174e2f251865979ce2b72.tar.gz
chromium_src-632d319842096e6998d174e2f251865979ce2b72.tar.bz2
Rename WeakBindingSet/WeakInterfacePtrSet to BindingSet/InterfacePtrSet.
This CL also renames the element type (WeakBinding/WeakInterfacePtr) to Element and hide them in the corresonding *Set class. BUG=None CQ_INCLUDE_TRYBOTS=tryserver.chromium.linux:linux_site_isolation Review URL: https://codereview.chromium.org/1735583002 Cr-Commit-Position: refs/heads/master@{#377384}
Diffstat (limited to 'content/gpu')
-rw-r--r--content/gpu/gpu_child_thread.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/gpu/gpu_child_thread.h b/content/gpu/gpu_child_thread.h
index c279c5f..7cbe0fa 100644
--- a/content/gpu/gpu_child_thread.h
+++ b/content/gpu/gpu_child_thread.h
@@ -24,8 +24,8 @@
#include "content/common/gpu/x_util.h"
#include "content/common/process_control.mojom.h"
#include "gpu/config/gpu_info.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 "ui/gfx/native_widget_types.h"
namespace gpu {
@@ -163,7 +163,7 @@ class GpuChildThread : public ChildThreadImpl,
scoped_ptr<GpuProcessControlImpl> process_control_;
// Bindings to the ProcessControl impl.
- mojo::WeakBindingSet<ProcessControl> process_control_bindings_;
+ mojo::BindingSet<ProcessControl> process_control_bindings_;
DISALLOW_COPY_AND_ASSIGN(GpuChildThread);
};