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

Unified Diff: chrome/renderer/extensions/page_capture_custom_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/page_capture_custom_bindings.cc
diff --git a/chrome/renderer/extensions/page_capture_custom_bindings.cc b/chrome/renderer/extensions/page_capture_custom_bindings.cc
index 3d967096003443b0fd77616913b4bd38e06710b0..79e10a66ec2cd51e88c7c7f0a1dc81b4824cf1bf 100644
--- a/chrome/renderer/extensions/page_capture_custom_bindings.cc
+++ b/chrome/renderer/extensions/page_capture_custom_bindings.cc
@@ -31,9 +31,9 @@ void PageCaptureCustomBindings::CreateBlob(
CHECK(args.Length() == 2);
CHECK(args[0]->IsString());
CHECK(args[1]->IsInt32());
- WebKit::WebString path(UTF8ToUTF16(*v8::String::Utf8Value(args[0])));
- WebKit::WebBlob blob =
- WebKit::WebBlob::createFromFile(path, args[1]->Int32Value());
+ blink::WebString path(UTF8ToUTF16(*v8::String::Utf8Value(args[0])));
+ blink::WebBlob blob =
+ blink::WebBlob::createFromFile(path, args[1]->Int32Value());
args.GetReturnValue().Set(blob.toV8Value());
}
« no previous file with comments | « chrome/renderer/extensions/module_system.cc ('k') | chrome/renderer/extensions/render_view_observer_natives.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698