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_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 <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 // Indicates the count of arguments passed in from the webpage. | 67 // Indicates the count of arguments passed in from the webpage. |
68 // argv | 68 // argv |
69 // Pointer to the arguments. | 69 // Pointer to the arguments. |
70 // Returns true on success. | 70 // Returns true on success. |
71 bool Initialize(HINSTANCE module_handle, NPP instance, NPMIMEType mime_type, | 71 bool Initialize(HINSTANCE module_handle, NPP instance, NPMIMEType mime_type, |
72 int16 argc, char* argn[], char* argv[]); | 72 int16 argc, char* argn[], char* argv[]); |
73 | 73 |
74 // Displays the default plugin UI. | 74 // Displays the default plugin UI. |
75 // | 75 // |
76 // Parameters: | 76 // Parameters: |
77 // parent_window | 77 // window_info |
78 // Handle to the parent window. | 78 // The window info passed to npapi. |
79 bool SetWindow(HWND parent_window); | 79 bool NPP_SetWindow(NPWindow* window_info); |
80 | 80 |
81 // Destroys the install dialog and the plugin window. | 81 // Destroys the install dialog and the plugin window. |
82 void Shutdown(); | 82 void Shutdown(); |
83 | 83 |
84 // Starts plugin download. Spawns the plugin installer after it is | 84 // Starts plugin download. Spawns the plugin installer after it is |
85 // downloaded. | 85 // downloaded. |
86 void DownloadPlugin(); | 86 void DownloadPlugin(); |
87 | 87 |
88 // Indicates that the plugin download was cancelled. | 88 // Indicates that the plugin download was cancelled. |
89 void DownloadCancelled(); | 89 void DownloadCancelled(); |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 HFONT regular_font_; | 308 HFONT regular_font_; |
309 HFONT underline_font_; | 309 HFONT underline_font_; |
310 // Tooltip Window. | 310 // Tooltip Window. |
311 HWND tooltip_; | 311 HWND tooltip_; |
312 | 312 |
313 DISALLOW_COPY_AND_ASSIGN(PluginInstallerImpl); | 313 DISALLOW_COPY_AND_ASSIGN(PluginInstallerImpl); |
314 }; | 314 }; |
315 | 315 |
316 | 316 |
317 #endif // WEBKIT_DEFAULT_PLUGIN_PLUGIN_IMPL_WIN_H_ | 317 #endif // WEBKIT_DEFAULT_PLUGIN_PLUGIN_IMPL_WIN_H_ |
OLD | NEW |