OLD | NEW |
(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 base { |
| 14 class Value; |
| 15 } |
| 16 |
| 17 namespace extensions { |
| 18 class Extension; |
| 19 |
| 20 class PageLauncherHandler : public ManifestHandler { |
| 21 public: |
| 22 PageLauncherHandler(); |
| 23 virtual ~PageLauncherHandler(); |
| 24 |
| 25 virtual bool Parse(const base::Value* value, |
| 26 Extension* extension, |
| 27 string16* error) OVERRIDE; |
| 28 private: |
| 29 DISALLOW_COPY_AND_ASSIGN(PageLauncherHandler); |
| 30 }; |
| 31 } |
| 32 |
| 33 #endif // CHROME_COMMON_EXTENSIONS_API_PAGE_LAUNCHER_PAGE_LAUNCHER_HANDLER_H_ |
OLD | NEW |