| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_PACK_EXTENSION_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_PACK_EXTENSION_HANDLER_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_PACK_EXTENSION_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_PACK_EXTENSION_HANDLER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "chrome/browser/browsing_data_remover.h" | 11 #include "chrome/browser/browsing_data_remover.h" |
| 12 #include "chrome/browser/extensions/pack_extension_job.h" | 12 #include "chrome/browser/extensions/pack_extension_job.h" |
| 13 #include "chrome/browser/plugin_data_remover_helper.h" | 13 #include "chrome/browser/plugin_data_remover_helper.h" |
| 14 #include "chrome/browser/ui/webui/options/options_ui.h" | 14 #include "chrome/browser/ui/webui/options/options_ui.h" |
| 15 | 15 |
| 16 // Clear browser data handler page UI handler. | 16 // Clear browser data handler page UI handler. |
| 17 class PackExtensionHandler : public OptionsPageUIHandler, | 17 class PackExtensionHandler : public OptionsPageUIHandler, |
| 18 public PackExtensionJob::Client { | 18 public PackExtensionJob::Client { |
| 19 public: | 19 public: |
| 20 PackExtensionHandler(); | 20 PackExtensionHandler(); |
| 21 virtual ~PackExtensionHandler(); | 21 virtual ~PackExtensionHandler(); |
| 22 | 22 |
| 23 // OptionsPageUIHandler implementation. | 23 // OptionsPageUIHandler implementation. |
| 24 virtual void Initialize() OVERRIDE; | |
| 25 virtual void GetLocalizedValues(DictionaryValue* localized_strings) OVERRIDE; | 24 virtual void GetLocalizedValues(DictionaryValue* localized_strings) OVERRIDE; |
| 26 | 25 |
| 27 // WebUIMessageHandler implementation. | 26 // WebUIMessageHandler implementation. |
| 28 virtual void RegisterMessages() OVERRIDE; | 27 virtual void RegisterMessages() OVERRIDE; |
| 29 | 28 |
| 30 // ExtensionPackJob::Client | 29 // ExtensionPackJob::Client |
| 31 virtual void OnPackSuccess(const FilePath& crx_file, | 30 virtual void OnPackSuccess(const FilePath& crx_file, |
| 32 const FilePath& key_file) OVERRIDE; | 31 const FilePath& key_file) OVERRIDE; |
| 33 | 32 |
| 34 virtual void OnPackFailure(const std::string& error, | 33 virtual void OnPackFailure(const std::string& error, |
| (...skipping 12 matching lines...) Expand all Loading... |
| 47 // Path to root directory of extension | 46 // Path to root directory of extension |
| 48 std::string extension_path_; | 47 std::string extension_path_; |
| 49 | 48 |
| 50 // Path to private key file, or null if none specified | 49 // Path to private key file, or null if none specified |
| 51 std::string private_key_path_; | 50 std::string private_key_path_; |
| 52 | 51 |
| 53 DISALLOW_COPY_AND_ASSIGN(PackExtensionHandler); | 52 DISALLOW_COPY_AND_ASSIGN(PackExtensionHandler); |
| 54 }; | 53 }; |
| 55 | 54 |
| 56 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_PACK_EXTENSION_HANDLER_H_ | 55 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_PACK_EXTENSION_HANDLER_H_ |
| OLD | NEW |