| Index: chrome/browser/extensions/activity_log/stream_noargs_ui_policy.h | 
| diff --git a/chrome/browser/extensions/activity_log/stream_noargs_ui_policy.h b/chrome/browser/extensions/activity_log/stream_noargs_ui_policy.h | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..3f766bd52136db98f4cac41c74c6b90bd830b484 | 
| --- /dev/null | 
| +++ b/chrome/browser/extensions/activity_log/stream_noargs_ui_policy.h | 
| @@ -0,0 +1,36 @@ | 
| +// Copyright $YEAR 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. | 
| + | 
| +#ifndef CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_STREAM_NOARGS_UI_POLICY_H_ | 
| +#define CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_STREAM_NOARGS_UI_POLICY_H_ | 
| + | 
| +#include "chrome/browser/extensions/activity_log/api_actions.h" | 
| +#include "chrome/browser/extensions/activity_log/fullstream_ui_policy.h" | 
| +#include "base/hash_tables.h" | 
| + | 
| +namespace extensions { | 
| + | 
| +class StreamWithoutArgsUIPolicy : public FullStreamUIPolicy { | 
| +  public: | 
| +    explicit StreamWithoutArgsUIPolicy(Profile* profile, | 
| +                                       content::BrowserThread::ID thread_id); | 
| +    virtual ~StreamWithoutArgsUIPolicy(); | 
| + | 
| +  protected: | 
| +    virtual void ProcessArguments(ActionType action_type, | 
| +                                  const std::string& name, | 
| +                                  const base::ListValue* args, | 
| +                                  std::stringstream& args_string) | 
| +                                  const OVERRIDE; | 
| + | 
| +    virtual void ProcessWebRequestModifications( | 
| +        base::DictionaryValue& details, | 
| +        std::string& details_string) const OVERRIDE; | 
| +  private: | 
| +    base::hash_set<std::string> arg_whitelist_api_; | 
| +}; | 
| + | 
| +} // End of the extensions namespace | 
| + | 
| +#endif  // CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_STREAM_NOARGS_UI_POLICY_H_ | 
|  |