Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1312)

Unified Diff: Source/core/page/NetworkStateNotifier.cpp

Issue 1054803006: Removing unnecessary blink::prefix (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/page/NetworkStateNotifier.h ('k') | Source/core/page/NetworkStateNotifierTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/NetworkStateNotifier.cpp
diff --git a/Source/core/page/NetworkStateNotifier.cpp b/Source/core/page/NetworkStateNotifier.cpp
index ff8e0c2637c19f30af726a95debbb207c59bb1b9..a8ebbdcfb49bc4dfce04d2b0dc01af55a4a4291c 100644
--- a/Source/core/page/NetworkStateNotifier.cpp
+++ b/Source/core/page/NetworkStateNotifier.cpp
@@ -58,7 +58,7 @@ void NetworkStateNotifier::setOnLine(bool onLine)
Page::networkStateChanged(onLine);
}
-void NetworkStateNotifier::setWebConnectionType(blink::WebConnectionType type)
+void NetworkStateNotifier::setWebConnectionType(WebConnectionType type)
{
ASSERT(isMainThread());
if (m_testUpdatesOnly)
@@ -67,7 +67,7 @@ void NetworkStateNotifier::setWebConnectionType(blink::WebConnectionType type)
setWebConnectionTypeImpl(type);
}
-void NetworkStateNotifier::setWebConnectionTypeImpl(blink::WebConnectionType type)
+void NetworkStateNotifier::setWebConnectionTypeImpl(WebConnectionType type)
{
ASSERT(isMainThread());
@@ -122,14 +122,14 @@ void NetworkStateNotifier::setTestUpdatesOnly(bool updatesOnly)
m_testUpdatesOnly = updatesOnly;
}
-void NetworkStateNotifier::setWebConnectionTypeForTest(blink::WebConnectionType type)
+void NetworkStateNotifier::setWebConnectionTypeForTest(WebConnectionType type)
{
ASSERT(isMainThread());
ASSERT(m_testUpdatesOnly);
setWebConnectionTypeImpl(type);
}
-void NetworkStateNotifier::notifyObserversOnContext(blink::WebConnectionType type, ExecutionContext* context)
+void NetworkStateNotifier::notifyObserversOnContext(WebConnectionType type, ExecutionContext* context)
{
ObserverList* observerList = lockAndFindObserverList(context);
« no previous file with comments | « Source/core/page/NetworkStateNotifier.h ('k') | Source/core/page/NetworkStateNotifierTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698