| 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>());
|
| }
|
| }
|
|
|
|
|