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

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

Issue 16915006: Convert most of extensions and some other random stuff to using the base namespace for Values. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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/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

Powered by Google App Engine
This is Rietveld 408576698