summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/extensions/messaging_bindings.cc
diff options
context:
space:
mode:
authorabarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-07 01:31:30 +0000
committerabarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-07 01:31:30 +0000
commita1221aea536d832d7e3d30c991f8ad1cd8b44193 (patch)
tree687a4f80d2b33b5a49af0673b58a7c0aa239f12c /chrome/renderer/extensions/messaging_bindings.cc
parent3a3619dc832dd13a9ea7e4eaa842132568daaf39 (diff)
downloadchromium_src-a1221aea536d832d7e3d30c991f8ad1cd8b44193.zip
chromium_src-a1221aea536d832d7e3d30c991f8ad1cd8b44193.tar.gz
chromium_src-a1221aea536d832d7e3d30c991f8ad1cd8b44193.tar.bz2
Rename WebKit namespace to blink (part 4)
This CL updates all references to the WebKit namespace in chrome and components. TBR=darin@chromium.org BUG=295096 Review URL: https://codereview.chromium.org/63273002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@233464 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/extensions/messaging_bindings.cc')
-rw-r--r--chrome/renderer/extensions/messaging_bindings.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/renderer/extensions/messaging_bindings.cc b/chrome/renderer/extensions/messaging_bindings.cc
index c06422f..67573a9 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());