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

Unified Diff: chrome/browser/extensions/activity_log/activity_log_policy.cc

Issue 106433007: Update some uses of Value in chrome/browser to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 7 years 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/activity_log_policy.cc
diff --git a/chrome/browser/extensions/activity_log/activity_log_policy.cc b/chrome/browser/extensions/activity_log/activity_log_policy.cc
index b6954af62ce8aa75e45f95fd92e7172825c424ab..2d3393dae7a292b50add3d2a2935638828feeeb2 100644
--- a/chrome/browser/extensions/activity_log/activity_log_policy.cc
+++ b/chrome/browser/extensions/activity_log/activity_log_policy.cc
@@ -113,10 +113,10 @@ void ActivityLogPolicy::Util::StripPrivacySensitiveFields(
// Clear WebRequest details; only keep a record of which types of
// modifications were performed.
if (action->action_type() == Action::ACTION_WEB_REQUEST) {
- DictionaryValue* details = NULL;
+ base::DictionaryValue* details = NULL;
if (action->mutable_other()->GetDictionary(constants::kActionWebRequest,
&details)) {
- DictionaryValue::Iterator details_iterator(*details);
+ base::DictionaryValue::Iterator details_iterator(*details);
while (!details_iterator.IsAtEnd()) {
details->SetBoolean(details_iterator.key(), true);
details_iterator.Advance();
@@ -131,7 +131,7 @@ void ActivityLogPolicy::Util::StripArguments(const ApiSet& api_whitelist,
if (api_whitelist.find(
std::make_pair(action->action_type(), action->api_name())) ==
api_whitelist.end()) {
- action->set_args(scoped_ptr<ListValue>());
+ action->set_args(scoped_ptr<base::ListValue>());
}
}

Powered by Google App Engine
This is Rietveld 408576698