Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(261)

Side by Side Diff: webkit/default_plugin/plugin_impl_win.h

Issue 2132018: Revert 47726 (turned nacl_ui_tests red) - Mac: First steps for default plugin... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/default_plugin/plugin_impl_mac.mm ('k') | webkit/default_plugin/plugin_impl_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 // window_info 77 // parent_window
78 // The window info passed to npapi. 78 // Handle to the parent window.
79 bool NPP_SetWindow(NPWindow* window_info); 79 bool SetWindow(HWND parent_window);
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
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_
OLDNEW
« no previous file with comments | « webkit/default_plugin/plugin_impl_mac.mm ('k') | webkit/default_plugin/plugin_impl_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698