Chromium Code Reviews| Index: chrome/common/extensions/options_page_handler.h |
| diff --git a/chrome/common/extensions/devtools_page_handler.h b/chrome/common/extensions/options_page_handler.h |
| similarity index 60% |
| copy from chrome/common/extensions/devtools_page_handler.h |
| copy to chrome/common/extensions/options_page_handler.h |
| index 9d947fe686c12b755bcffe4fffee0162b0126566..1f7d5c86259aef216cb4dc4a5bffd14715e85782 100644 |
| --- a/chrome/common/extensions/devtools_page_handler.h |
| +++ b/chrome/common/extensions/options_page_handler.h |
| @@ -2,8 +2,8 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -#ifndef CHROME_COMMON_EXTENSIONS_DEVTOOLS_PAGE_HANDLER_H_ |
| -#define CHROME_COMMON_EXTENSIONS_DEVTOOLS_PAGE_HANDLER_H_ |
| +#ifndef CHROME_COMMON_EXTENSIONS_OPTIONS_PAGE_HANDLER_H_ |
|
Yoyo Zhou
2013/01/03 23:16:00
You can rebase this onto your other change that no
Joe Thomas
2013/01/04 01:36:27
Done.
|
| +#define CHROME_COMMON_EXTENSIONS_OPTIONS_PAGE_HANDLER_H_ |
| #include <string> |
| @@ -14,11 +14,11 @@ namespace extensions { |
| class Extension; |
| -// Parses the "devtools_page" manifest key. |
| -class DevToolsPageHandler : public ManifestHandler { |
| +// Parses the "options_page" manifest key. |
| +class OptionsPageHandler : public ManifestHandler { |
| public: |
| - DevToolsPageHandler(); |
| - virtual ~DevToolsPageHandler(); |
| + OptionsPageHandler(); |
| + virtual ~OptionsPageHandler(); |
| virtual bool Parse(const base::Value* value, |
| Extension* extension, |
| @@ -27,4 +27,4 @@ class DevToolsPageHandler : public ManifestHandler { |
| } // namespace extensions |
| -#endif // CHROME_COMMON_EXTENSIONS_DEVTOOLS_PAGE_HANDLER_H_ |
| +#endif // CHROME_COMMON_EXTENSIONS_OPTIONS_PAGE_HANDLER_H_ |