| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_MAC_H_ | 5 #ifndef WEBKIT_DEFAULT_PLUGIN_PLUGIN_IMPL_MAC_H_ |
| 6 #define WEBKIT_DEFAULT_PLUGIN_PLUGIN_IMPL_MAC_H_ | 6 #define WEBKIT_DEFAULT_PLUGIN_PLUGIN_IMPL_MAC_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/logging.h" | |
| 12 #include "third_party/npapi/bindings/npapi.h" | 11 #include "third_party/npapi/bindings/npapi.h" |
| 13 // #include "webkit/default_plugin/install_dialog.h" | 12 // #include "webkit/default_plugin/install_dialog.h" |
| 14 // #include "webkit/default_plugin/plugin_database_handler.h" | 13 // #include "webkit/default_plugin/plugin_database_handler.h" |
| 15 // #include "webkit/default_plugin/plugin_install_job_monitor.h" | 14 // #include "webkit/default_plugin/plugin_install_job_monitor.h" |
| 16 | 15 |
| 17 // Possible plugin installer states. | 16 // Possible plugin installer states. |
| 18 enum PluginInstallerState { | 17 enum PluginInstallerState { |
| 19 PluginInstallerStateUndefined, | 18 PluginInstallerStateUndefined, |
| 20 PluginListDownloadInitiated, | 19 PluginListDownloadInitiated, |
| 21 PluginListDownloaded, | 20 PluginListDownloaded, |
| (...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 // HFONT regular_font_; | 315 // HFONT regular_font_; |
| 317 // HFONT underline_font_; | 316 // HFONT underline_font_; |
| 318 // Tooltip Window. | 317 // Tooltip Window. |
| 319 gfx::NativeWindow tooltip_; | 318 gfx::NativeWindow tooltip_; |
| 320 | 319 |
| 321 DISALLOW_EVIL_CONSTRUCTORS(PluginInstallerImpl); | 320 DISALLOW_EVIL_CONSTRUCTORS(PluginInstallerImpl); |
| 322 }; | 321 }; |
| 323 | 322 |
| 324 | 323 |
| 325 #endif // WEBKIT_DEFAULT_PLUGIN_PLUGIN_IMPL_MAC_H_ | 324 #endif // WEBKIT_DEFAULT_PLUGIN_PLUGIN_IMPL_MAC_H_ |
| OLD | NEW |