| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 WEBKIT_DEFAULT_PLUGIN_PLUGIN_IMPL_WIN_H_ | 5 #ifndef WEBKIT_DEFAULT_PLUGIN_PLUGIN_IMPL_WIN_H_ |
| 6 #define WEBKIT_DEFAULT_PLUGIN_PLUGIN_IMPL_WIN_H_ | 6 #define WEBKIT_DEFAULT_PLUGIN_PLUGIN_IMPL_WIN_H_ |
| 7 | 7 |
| 8 #include <atlbase.h> | 8 #include <atlbase.h> |
| 9 #include <atlwin.h> | 9 #include <atlwin.h> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/logging.h" | |
| 14 #include "third_party/npapi/bindings/npapi.h" | 13 #include "third_party/npapi/bindings/npapi.h" |
| 15 #include "webkit/default_plugin/install_dialog.h" | 14 #include "webkit/default_plugin/install_dialog.h" |
| 16 #include "webkit/default_plugin/plugin_database_handler.h" | 15 #include "webkit/default_plugin/plugin_database_handler.h" |
| 17 #include "webkit/default_plugin/plugin_install_job_monitor.h" | 16 #include "webkit/default_plugin/plugin_install_job_monitor.h" |
| 18 | 17 |
| 19 // Possible plugin installer states. | 18 // Possible plugin installer states. |
| 20 enum PluginInstallerState { | 19 enum PluginInstallerState { |
| 21 PluginInstallerStateUndefined, | 20 PluginInstallerStateUndefined, |
| 22 PluginListDownloadInitiated, | 21 PluginListDownloadInitiated, |
| 23 PluginListDownloaded, | 22 PluginListDownloaded, |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 // ActiveX related. | 364 // ActiveX related. |
| 366 std::string activex_codebase_; | 365 std::string activex_codebase_; |
| 367 std::string activex_clsid_; | 366 std::string activex_clsid_; |
| 368 CComObject<ActiveXInstaller>* activex_installer_; | 367 CComObject<ActiveXInstaller>* activex_installer_; |
| 369 | 368 |
| 370 DISALLOW_EVIL_CONSTRUCTORS(PluginInstallerImpl); | 369 DISALLOW_EVIL_CONSTRUCTORS(PluginInstallerImpl); |
| 371 }; | 370 }; |
| 372 | 371 |
| 373 | 372 |
| 374 #endif // WEBKIT_DEFAULT_PLUGIN_PLUGIN_IMPL_WIN_H_ | 373 #endif // WEBKIT_DEFAULT_PLUGIN_PLUGIN_IMPL_WIN_H_ |
| OLD | NEW |