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

Side by Side Diff: chrome/common/extensions/api/page_launcher/page_launcher_handler.h

Issue 12095023: Allow platform apps to add themselves to the Action Box. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 10 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_COMMON_EXTENSIONS_API_PAGE_LAUNCHER_PAGE_LAUNCHER_HANDLER_H_
6 #define CHROME_COMMON_EXTENSIONS_API_PAGE_LAUNCHER_PAGE_LAUNCHER_HANDLER_H_
7
8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h"
10 #include "base/string16.h"
11 #include "chrome/common/extensions/manifest_handler.h"
12
13 namespace extensions {
14 class Extension;
15
not at google - send to devlin 2013/02/01 16:39:47 docs
Rune Fevang 2013/02/01 22:12:54 Done.
16 class PageLauncherHandler : public ManifestHandler {
17 public:
18 PageLauncherHandler();
19 virtual ~PageLauncherHandler();
20
21 virtual bool Parse(Extension* extension,
22 string16* error) OVERRIDE;
not at google - send to devlin 2013/02/01 16:39:47 1 line
Rune Fevang 2013/02/01 22:12:54 Done.
23 private:
24 DISALLOW_COPY_AND_ASSIGN(PageLauncherHandler);
25 };
26 }
not at google - send to devlin 2013/02/01 16:39:47 // namespace extensions
Rune Fevang 2013/02/01 22:12:54 Done.
27
28 #endif // CHROME_COMMON_EXTENSIONS_API_PAGE_LAUNCHER_PAGE_LAUNCHER_HANDLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698