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

Unified Diff: chrome/renderer/extensions/app_runtime_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/app_runtime_custom_bindings.cc
diff --git a/chrome/renderer/extensions/app_runtime_custom_bindings.cc b/chrome/renderer/extensions/app_runtime_custom_bindings.cc
index 30eaf0a46070eb32f269aebb900ac2a76a1e1d35..e6689d5e00ec137fe0b5419d83f40529d6d13da9 100644
--- a/chrome/renderer/extensions/app_runtime_custom_bindings.cc
+++ b/chrome/renderer/extensions/app_runtime_custom_bindings.cc
@@ -11,9 +11,9 @@
#include "third_party/WebKit/public/web/WebBlob.h"
#include "third_party/WebKit/public/web/WebSerializedScriptValue.h"
-using WebKit::WebBlob;
-using WebKit::WebSerializedScriptValue;
-using WebKit::WebString;
+using blink::WebBlob;
+using blink::WebSerializedScriptValue;
+using blink::WebString;
namespace {
@@ -47,7 +47,7 @@ void CreateBlob(const v8::FunctionCallbackInfo<v8::Value> &args) {
std::string blob_length_string(*v8::String::Utf8Value(args[1]));
int64 blob_length = 0;
DCHECK(base::StringToInt64(blob_length_string, &blob_length));
- WebKit::WebBlob web_blob = WebBlob::createFromFile(
+ blink::WebBlob web_blob = WebBlob::createFromFile(
WebString::fromUTF8(blob_file_path), blob_length);
args.GetReturnValue().Set(web_blob.toV8Value());
}
« no previous file with comments | « chrome/renderer/extensions/app_bindings.cc ('k') | chrome/renderer/extensions/app_window_custom_bindings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698