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