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

Unified Diff: chrome/renderer/extensions/messaging_bindings.cc

Issue 63273002: Rename WebKit namespace to blink (part 4) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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
Index: chrome/renderer/extensions/messaging_bindings.cc
diff --git a/chrome/renderer/extensions/messaging_bindings.cc b/chrome/renderer/extensions/messaging_bindings.cc
index c06422f8c1bba79b97c02fd0ed386278fd43999c..67573a9ecd7d52477b47d48afe01b2f9f3a077d1 100644
--- a/chrome/renderer/extensions/messaging_bindings.cc
+++ b/chrome/renderer/extensions/messaging_bindings.cc
@@ -118,7 +118,7 @@ class ExtensionImpl : public extensions::ChromeV8Extension {
renderview->GetRoutingID(), port_id,
extensions::Message(
*v8::String::AsciiValue(args[1]),
- WebKit::WebUserGestureIndicator::isProcessingUserGesture())));
+ blink::WebUserGestureIndicator::isProcessingUserGesture())));
}
// Forcefully disconnects a port.
@@ -204,7 +204,7 @@ class ExtensionImpl : public extensions::ChromeV8Extension {
if (context.IsEmpty())
return;
v8::Context::Scope context_scope(context);
- WebKit::WebScopedMicrotaskSuppression suppression;
+ blink::WebScopedMicrotaskSuppression suppression;
callback->Call(context->Global(), 0, NULL);
}
@@ -322,9 +322,9 @@ void MessagingBindings::DeliverMessage(
int target_port_id,
const Message& message,
content::RenderView* restrict_to_render_view) {
- scoped_ptr<WebKit::WebScopedUserGesture> web_user_gesture;
+ scoped_ptr<blink::WebScopedUserGesture> web_user_gesture;
if (message.user_gesture)
- web_user_gesture.reset(new WebKit::WebScopedUserGesture);
+ web_user_gesture.reset(new blink::WebScopedUserGesture);
v8::HandleScope handle_scope(v8::Isolate::GetCurrent());
« no previous file with comments | « chrome/renderer/extensions/media_galleries_custom_bindings.cc ('k') | chrome/renderer/extensions/module_system.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698