Chromium Code Reviews| Index: chrome/browser/extensions/activity_log/stream_noargs_ui_policy.cc |
| diff --git a/chrome/browser/extensions/activity_log/stream_noargs_ui_policy.cc b/chrome/browser/extensions/activity_log/stream_noargs_ui_policy.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f72ffcf6cd023432fc56cf7fdfe95461896fdfe3 |
| --- /dev/null |
| +++ b/chrome/browser/extensions/activity_log/stream_noargs_ui_policy.cc |
| @@ -0,0 +1,47 @@ |
| +// Copyright 2013 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#include "base/json/json_string_value_serializer.h" |
| +#include "chrome/browser/extensions/activity_log/stream_noargs_ui_policy.h" |
| + |
| +namespace extensions { |
| + |
| +StreamWithoutArgsUIPolicy::StreamWithoutArgsUIPolicy( |
| + Profile* profile, |
| + content::BrowserThread::ID thread_id) |
| + : FullStreamUIPolicy(profile, thread_id) { |
| + for (int i = 0; i < APIAction::kSizeAlwaysLog; i++) { |
| + arg_whitelist_api_.insert(APIAction::kAlwaysLog[i]); |
| + } |
| +} |
| + |
| +StreamWithoutArgsUIPolicy::~StreamWithoutArgsUIPolicy() {} |
| + |
| +void StreamWithoutArgsUIPolicy::ProcessArguments( |
| + ActionType action_type, |
| + const std::string& name, |
| + const base::ListValue* args, |
| + std::string* args_string) const { |
| + if (action_type == ACTION_DOM || |
| + arg_whitelist_api_.find(name) != arg_whitelist_api_.end()) { |
| + FullStreamUIPolicy::ProcessArguments(action_type, name, args, args_string); |
| + } else { |
| + return; |
|
Matt Perry
2013/06/13 18:23:23
else branch is unnecessary
dbabic
2013/06/13 23:10:08
Done.
|
| + } |
| +} |
| + |
| +void StreamWithoutArgsUIPolicy::ProcessWebRequestModifications( |
| + base::DictionaryValue& details, |
| + std::string& details_string) const { |
| + // Strip details of the web request modifications (for privacy reasons). |
| + DictionaryValue::Iterator details_iterator(details); |
| + while (!details_iterator.IsAtEnd()) { |
| + details.SetBoolean(details_iterator.key(), true); |
| + details_iterator.Advance(); |
| + } |
| + JSONStringValueSerializer serializer(&details_string); |
| + serializer.SerializeAndOmitBinaryValues(details); |
| +} |
| + |
| +} // namespace extensions |