diff options
author | yzshen <yzshen@chromium.org> | 2016-02-24 23:29:27 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-02-25 07:30:23 +0000 |
commit | d414dc34a7f87a2000e09c58b9ddbb5bd6b61463 (patch) | |
tree | a9ec402cbfbef1da3acde6071d992e2ade92ca8b /mojo/shell/background | |
parent | d910911b407efde31709e3a766a5ee776db4c626 (diff) | |
download | chromium_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 'mojo/shell/background')
-rw-r--r-- | mojo/shell/background/tests/test_service.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mojo/shell/background/tests/test_service.cc b/mojo/shell/background/tests/test_service.cc index 3c9dbbd..4d001af 100644 --- a/mojo/shell/background/tests/test_service.cc +++ b/mojo/shell/background/tests/test_service.cc @@ -3,7 +3,7 @@ // found in the LICENSE file. #include "mojo/public/c/system/main.h" -#include "mojo/public/cpp/bindings/weak_binding_set.h" +#include "mojo/public/cpp/bindings/binding_set.h" #include "mojo/shell/background/tests/test.mojom.h" #include "mojo/shell/public/cpp/application_runner.h" #include "mojo/shell/public/cpp/connection.h" @@ -39,7 +39,7 @@ class TestClient : public ShellClient, // mojom::TestService void Test(const TestCallback& callback) override { callback.Run(); } - WeakBindingSet<mojom::TestService> bindings_; + BindingSet<mojom::TestService> bindings_; DISALLOW_COPY_AND_ASSIGN(TestClient); }; |