Chromium Code Reviews| 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..24f01e85fa398729d6a23096a3503d942525f77e |
| --- /dev/null |
| +++ b/chrome/browser/extensions/activity_log/stream_noargs_ui_policy.h |
| @@ -0,0 +1,23 @@ |
| +// Copyright (c) 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. |
| + |
| +#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/fullstream_ui_policy.h" |
| + |
| +namespace extensions { |
| + |
| +class StreamWithoutArgsUIPolicy : public FullStreamUIPolicy { |
|
felt
2013/05/23 04:20:01
Is there a .cc file that goes with this to impleme
dbabic
2013/05/24 00:35:07
Done. Now there is. There wasn't a need for it b
|
| + public: |
| + explicit StreamWithoutArgsUIPolicy(Profile* profile) |
| + : FullStreamUIPolicy(profile) {} |
| + protected: |
| + virtual void ProcessArguments(const base::ListValue*, std::stringstream&) |
| + const OVERRIDE { } |
| +}; |
| + |
| +} // End of the extensions namespace |
| + |
| +#endif // CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_STREAM_NOARGS_UI_POLICY_H_ |