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

Unified Diff: chrome/renderer/automation/dom_automation_v8_extension.cc

Issue 7767011: Split extension_base.* out of bindings_utils.*. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 months 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/chrome_renderer.gypi ('k') | chrome/renderer/extensions/bindings_utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/automation/dom_automation_v8_extension.cc
diff --git a/chrome/renderer/automation/dom_automation_v8_extension.cc b/chrome/renderer/automation/dom_automation_v8_extension.cc
index 751e03af57a2144893f28415efd444b7ad4db21c..e998e1890c4c755868a79a8c558a64e2695c88f3 100644
--- a/chrome/renderer/automation/dom_automation_v8_extension.cc
+++ b/chrome/renderer/automation/dom_automation_v8_extension.cc
@@ -4,16 +4,15 @@
#include "chrome/renderer/automation/dom_automation_v8_extension.h"
-#include "chrome/renderer/extensions/bindings_utils.h"
+#include "chrome/renderer/extensions/extension_base.h"
#include "grit/renderer_resources.h"
-using bindings_utils::GetStringResource;
-
const char* DomAutomationV8Extension::kName = "chrome/domautomation";
v8::Extension* DomAutomationV8Extension::Get() {
static v8::Extension* extension =
new v8::Extension(
- kName, GetStringResource(IDR_DOM_AUTOMATION_JS), 0, NULL);
+ kName, ExtensionBase::GetStringResource(IDR_DOM_AUTOMATION_JS), 0,
+ NULL);
return extension;
}
« no previous file with comments | « chrome/chrome_renderer.gypi ('k') | chrome/renderer/extensions/bindings_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698