| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_DEFAULT_PLUGIN_PLUGIN_IMPL_WIN_H_ | 5 #ifndef CHROME_DEFAULT_PLUGIN_PLUGIN_IMPL_WIN_H_ |
| 6 #define CHROME_DEFAULT_PLUGIN_PLUGIN_IMPL_WIN_H_ | 6 #define CHROME_DEFAULT_PLUGIN_PLUGIN_IMPL_WIN_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | |
| 11 | 10 |
| 12 #include "chrome/default_plugin/install_dialog.h" | 11 #include "chrome/default_plugin/install_dialog.h" |
| 13 #include "chrome/default_plugin/plugin_database_handler.h" | 12 #include "chrome/default_plugin/plugin_database_handler.h" |
| 14 #include "chrome/default_plugin/plugin_install_job_monitor.h" | 13 #include "chrome/default_plugin/plugin_install_job_monitor.h" |
| 15 #include "gfx/window_impl.h" | 14 #include "gfx/window_impl.h" |
| 16 #include "third_party/npapi/bindings/npapi.h" | 15 #include "third_party/npapi/bindings/npapi.h" |
| 17 | 16 |
| 18 // Possible plugin installer states. | 17 // Possible plugin installer states. |
| 19 enum PluginInstallerState { | 18 enum PluginInstallerState { |
| 20 PluginInstallerStateUndefined, | 19 PluginInstallerStateUndefined, |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 HFONT regular_font_; | 307 HFONT regular_font_; |
| 309 HFONT underline_font_; | 308 HFONT underline_font_; |
| 310 // Tooltip Window. | 309 // Tooltip Window. |
| 311 HWND tooltip_; | 310 HWND tooltip_; |
| 312 | 311 |
| 313 DISALLOW_COPY_AND_ASSIGN(PluginInstallerImpl); | 312 DISALLOW_COPY_AND_ASSIGN(PluginInstallerImpl); |
| 314 }; | 313 }; |
| 315 | 314 |
| 316 | 315 |
| 317 #endif // CHROME_DEFAULT_PLUGIN_PLUGIN_IMPL_WIN_H_ | 316 #endif // CHROME_DEFAULT_PLUGIN_PLUGIN_IMPL_WIN_H_ |
| OLD | NEW |