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

Unified Diff: Source/modules/push_messaging/PushController.cpp

Issue 469773002: Cleanup blink:: prefix usage in Source/core/modules/[mediasource/*.cpp to websockets/*.cpp] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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/modules/netinfo/NetworkInformation.cpp ('k') | Source/modules/push_messaging/PushError.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/push_messaging/PushController.cpp
diff --git a/Source/modules/push_messaging/PushController.cpp b/Source/modules/push_messaging/PushController.cpp
index 36f5febe570e22c7a608889392aa781c5d6ff566..d6ba8a0c18a55a49017883b0312b690e4fc2e4e8 100644
--- a/Source/modules/push_messaging/PushController.cpp
+++ b/Source/modules/push_messaging/PushController.cpp
@@ -10,17 +10,17 @@
namespace blink {
-PushController::PushController(blink::WebPushClient* client)
+PushController::PushController(WebPushClient* client)
: m_client(client)
{
}
-PassOwnPtrWillBeRawPtr<PushController> PushController::create(blink::WebPushClient* client)
+PassOwnPtrWillBeRawPtr<PushController> PushController::create(WebPushClient* client)
{
return adoptPtrWillBeNoop(new PushController(client));
}
-blink::WebPushClient* PushController::clientFrom(Page* page)
+WebPushClient* PushController::clientFrom(Page* page)
{
if (PushController* controller = PushController::from(page))
return controller->client();
@@ -32,7 +32,7 @@ const char* PushController::supplementName()
return "PushController";
}
-void providePushControllerTo(Page& page, blink::WebPushClient* client)
+void providePushControllerTo(Page& page, WebPushClient* client)
{
PushController::provideTo(page, PushController::supplementName(), PushController::create(client));
}
« no previous file with comments | « Source/modules/netinfo/NetworkInformation.cpp ('k') | Source/modules/push_messaging/PushError.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698