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

Unified Diff: chrome/renderer/extensions/document_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
« no previous file with comments | « chrome/renderer/extensions/dispatcher.cc ('k') | chrome/renderer/extensions/dom_activity_logger.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/extensions/document_custom_bindings.cc
diff --git a/chrome/renderer/extensions/document_custom_bindings.cc b/chrome/renderer/extensions/document_custom_bindings.cc
index 253b6127f358417c2c39f01c661e53930a12d813..b647b5b75aa3186555c261bb07e7650aa7252b71 100644
--- a/chrome/renderer/extensions/document_custom_bindings.cc
+++ b/chrome/renderer/extensions/document_custom_bindings.cc
@@ -33,11 +33,11 @@ void DocumentCustomBindings::RegisterElement(
std::string element_name(*v8::String::AsciiValue(args[0]));
v8::Local<v8::Object> options = args[1]->ToObject();
- WebKit::WebExceptionCode ec = 0;
- WebKit::WebDocument document = context()->web_frame()->document();
+ blink::WebExceptionCode ec = 0;
+ blink::WebDocument document = context()->web_frame()->document();
v8::Handle<v8::Value> constructor =
document.registerEmbedderCustomElement(
- WebKit::WebString::fromUTF8(element_name), options, ec);
+ blink::WebString::fromUTF8(element_name), options, ec);
args.GetReturnValue().Set(constructor);
}
« no previous file with comments | « chrome/renderer/extensions/dispatcher.cc ('k') | chrome/renderer/extensions/dom_activity_logger.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698