Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(336)

Side by Side Diff: chrome/browser/extensions/activity_log/stream_noargs_ui_policy.h

Issue 15573003: New architecture of the activity logging: Policies for summarization (and compression) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed compiler errors on different platforms (at least I hope so). Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_STREAM_NOARGS_UI_POLICY_H_
6 #define CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_STREAM_NOARGS_UI_POLICY_H_
7
8 #include "chrome/browser/extensions/activity_log/fullstream_ui_policy.h"
9
10 namespace extensions {
11
12 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
13 public:
14 explicit StreamWithoutArgsUIPolicy(Profile* profile)
15 : FullStreamUIPolicy(profile) {}
16 protected:
17 virtual void ProcessArguments(const base::ListValue*, std::stringstream&)
18 const OVERRIDE { }
19 };
20
21 } // End of the extensions namespace
22
23 #endif // CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_STREAM_NOARGS_UI_POLICY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698