Index: chrome/browser/extensions/extension_function_dispatcher.cc |
diff --git a/chrome/browser/extensions/extension_function_dispatcher.cc b/chrome/browser/extensions/extension_function_dispatcher.cc |
index a7ff244856b5a56b9f63820665460531121dbc10..232c31c88491c4d7b6bd426186a3d39daf99fbce 100644 |
--- a/chrome/browser/extensions/extension_function_dispatcher.cc |
+++ b/chrome/browser/extensions/extension_function_dispatcher.cc |
@@ -48,7 +48,7 @@ namespace { |
void LogSuccess(const std::string& extension_id, |
const std::string& api_name, |
- scoped_ptr<ListValue> args, |
+ scoped_ptr<base::ListValue> args, |
Profile* profile) { |
// The ActivityLog can only be accessed from the main (UI) thread. If we're |
// running on the wrong thread, re-dispatch from the main thread. |
@@ -70,7 +70,7 @@ void LogSuccess(const std::string& extension_id, |
void LogFailure(const std::string& extension_id, |
const std::string& api_name, |
- scoped_ptr<ListValue> args, |
+ scoped_ptr<base::ListValue> args, |
extensions::BlockedAction::Reason reason, |
Profile* profile) { |
// The ActivityLog can only be accessed from the main (UI) thread. If we're |