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

Unified Diff: chrome/browser/extensions/activity_log/fullstream_ui_policy.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/activity_log/fullstream_ui_policy.cc
diff --git a/chrome/browser/extensions/activity_log/fullstream_ui_policy.cc b/chrome/browser/extensions/activity_log/fullstream_ui_policy.cc
index d7c22117ee2a79a4b61d6f94c0caef7b9c81018c..ddf56c7c43ad1839a0d087fff2ffc7ccd06f4cad 100644
--- a/chrome/browser/extensions/activity_log/fullstream_ui_policy.cc
+++ b/chrome/browser/extensions/activity_log/fullstream_ui_policy.cc
@@ -94,10 +94,10 @@ std::string FullStreamUIPolicy::GetKey(ActivityLogPolicy::KeyType key_ty) const
std::string FullStreamUIPolicy::ProcessArguments(
ActionType action_type,
const std::string& name,
- const ListValue* args) const {
+ const base::ListValue* args) const {
std::string processed_args;
if (args) {
- ListValue::const_iterator it = args->begin();
+ base::ListValue::const_iterator it = args->begin();
// TODO(felt,dbabic) Think about replacing the loop with a single
// call to SerializeAndOmitBinaryValues.
for (; it != args->end(); ++it) {
@@ -126,7 +126,7 @@ void FullStreamUIPolicy::ProcessAction(
const std::string& extension_id,
const std::string& name,
const GURL& url_param,
- const ListValue* args,
+ const base::ListValue* args,
const DictionaryValue* details) {
std::string concatenated_args = ProcessArguments(action_type, name, args);
const Time now = Time::Now();

Powered by Google App Engine
This is Rietveld 408576698