summaryrefslogtreecommitdiffstats
path: root/content/gpu
diff options
context:
space:
mode:
authoryzshen <yzshen@chromium.org>2016-02-24 23:29:27 -0800
committerCommit bot <commit-bot@chromium.org>2016-02-25 07:30:23 +0000
commitd414dc34a7f87a2000e09c58b9ddbb5bd6b61463 (patch)
treea9ec402cbfbef1da3acde6071d992e2ade92ca8b /content/gpu
parentd910911b407efde31709e3a766a5ee776db4c626 (diff)
downloadchromium_src-d414dc34a7f87a2000e09c58b9ddbb5bd6b61463.zip
chromium_src-d414dc34a7f87a2000e09c58b9ddbb5bd6b61463.tar.gz
chromium_src-d414dc34a7f87a2000e09c58b9ddbb5bd6b61463.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 Committed: https://crrev.com/632d319842096e6998d174e2f251865979ce2b72 Cr-Commit-Position: refs/heads/master@{#377384} Review URL: https://codereview.chromium.org/1735583002 Cr-Commit-Position: refs/heads/master@{#377528}
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);
};