summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_test_sink.cc
diff options
context:
space:
mode:
authorbrettw <brettw@chromium.org>2015-06-01 22:34:43 -0700
committerCommit bot <commit-bot@chromium.org>2015-06-02 05:35:21 +0000
commit5a1613dcb83ac548403796eb1320d17dad52ccd8 (patch)
treefa77f970c2603db4b8b2854448e82cf8f3cce888 /ipc/ipc_test_sink.cc
parentabd18063e7b78bc50db62c1914aa729cb0daa40f (diff)
downloadchromium_src-5a1613dcb83ac548403796eb1320d17dad52ccd8.zip
chromium_src-5a1613dcb83ac548403796eb1320d17dad52ccd8.tar.gz
chromium_src-5a1613dcb83ac548403796eb1320d17dad52ccd8.tar.bz2
Move ObserverList to base namespace.
Moves ObserverList and related classes to the base namespace. ObserverList[ThreadSafe] maintains a using statement to avoid having to update all users atomically. Users of ObserverListBase are updated in this patch. BUG= CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1152983004 Cr-Commit-Position: refs/heads/master@{#332347}
Diffstat (limited to 'ipc/ipc_test_sink.cc')
-rw-r--r--ipc/ipc_test_sink.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/ipc_test_sink.cc b/ipc/ipc_test_sink.cc
index 53d29fc..f0c7a5f 100644
--- a/ipc/ipc_test_sink.cc
+++ b/ipc/ipc_test_sink.cc
@@ -41,7 +41,7 @@ base::ProcessId TestSink::GetSelfPID() const {
}
bool TestSink::OnMessageReceived(const Message& msg) {
- ObserverListBase<Listener>::Iterator it(&filter_list_);
+ base::ObserverListBase<Listener>::Iterator it(&filter_list_);
Listener* observer;
while ((observer = it.GetNext()) != NULL) {
if (observer->OnMessageReceived(msg))