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

Unified Diff: chrome/renderer/extensions/file_browser_handler_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/file_browser_handler_custom_bindings.cc
diff --git a/chrome/renderer/extensions/file_browser_handler_custom_bindings.cc b/chrome/renderer/extensions/file_browser_handler_custom_bindings.cc
index 3c2afe57c985e7694fd6098cebc69fa2e74cedbb..70e841c8fde3d45173bba83b51bd0716c4f8a604 100644
--- a/chrome/renderer/extensions/file_browser_handler_custom_bindings.cc
+++ b/chrome/renderer/extensions/file_browser_handler_custom_bindings.cc
@@ -45,13 +45,13 @@ void FileBrowserHandlerCustomBindings::GetExternalFileEntry(
v8::String::New("fileFullPath"))));
bool is_directory =
file_def->Get(v8::String::New("fileIsDirectory"))->ToBoolean()->Value();
- WebKit::WebFrame* webframe =
- WebKit::WebFrame::frameForContext(context()->v8_context());
+ blink::WebFrame* webframe =
+ blink::WebFrame::frameForContext(context()->v8_context());
args.GetReturnValue().Set(webframe->createFileEntry(
- WebKit::WebFileSystemTypeExternal,
- WebKit::WebString::fromUTF8(file_system_name.c_str()),
- WebKit::WebString::fromUTF8(file_system_path.c_str()),
- WebKit::WebString::fromUTF8(file_full_path.c_str()),
+ blink::WebFileSystemTypeExternal,
+ blink::WebString::fromUTF8(file_system_name.c_str()),
+ blink::WebString::fromUTF8(file_system_path.c_str()),
+ blink::WebString::fromUTF8(file_full_path.c_str()),
is_directory));
#endif
}

Powered by Google App Engine
This is Rietveld 408576698