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

Unified Diff: chrome/browser/extensions/execute_code_in_tab_function.cc

Issue 10375021: Move Extension into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Take 2 Created 8 years, 7 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
Index: chrome/browser/extensions/execute_code_in_tab_function.cc
diff --git a/chrome/browser/extensions/execute_code_in_tab_function.cc b/chrome/browser/extensions/execute_code_in_tab_function.cc
index 44d03f23a7c0ef934529dfa809de11f73d17e9f0..78c22d21b3c4af97852a1af2959d1c15973c04c0 100644
--- a/chrome/browser/extensions/execute_code_in_tab_function.cc
+++ b/chrome/browser/extensions/execute_code_in_tab_function.cc
@@ -179,7 +179,7 @@ void ExecuteCodeInTabFunction::OnExecuteCodeFinished(int request_id,
void ExecuteCodeInTabFunction::DidLoadFile(bool success,
const std::string& data) {
std::string function_name = name();
- const Extension* extension = GetExtension();
+ const extensions::Extension* extension = GetExtension();
// Check if the file is CSS and needs localization.
if (success &&
@@ -253,7 +253,7 @@ bool ExecuteCodeInTabFunction::Execute(const std::string& code_string) {
return false;
}
- const Extension* extension = GetExtension();
+ const extensions::Extension* extension = GetExtension();
if (!extension) {
SendResponse(false);
return false;

Powered by Google App Engine
This is Rietveld 408576698