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

Unified Diff: webkit/default_plugin/plugin_impl_win.cc

Issue 2075006: Mac: First steps for default plugin (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: rebase 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/default_plugin/plugin_impl_win.h ('k') | webkit/default_plugin/plugin_main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/default_plugin/plugin_impl_win.cc
diff --git a/webkit/default_plugin/plugin_impl_win.cc b/webkit/default_plugin/plugin_impl_win.cc
index 2a62a1cdd661e672d1e6276bc05dcc079e3102d0..49202402366ed88903c1d11b17da2625c33ecaea 100644
--- a/webkit/default_plugin/plugin_impl_win.cc
+++ b/webkit/default_plugin/plugin_impl_win.cc
@@ -52,7 +52,7 @@ PluginInstallerImpl::~PluginInstallerImpl() {
bool PluginInstallerImpl::Initialize(HINSTANCE module_handle, NPP instance,
NPMIMEType mime_type, int16 argc,
char* argn[], char* argv[]) {
- DLOG(INFO) << __FUNCTION__ << " Mime Type : " << mime_type;
+ DLOG(INFO) << __FUNCTION__ << " MIME Type : " << mime_type;
DCHECK(instance != NULL);
DCHECK(module_handle != NULL);
@@ -287,7 +287,8 @@ std::wstring PluginInstallerImpl::ReplaceStringForPossibleEmptyReplacement(
}
}
-bool PluginInstallerImpl::SetWindow(HWND parent_window) {
+bool PluginInstallerImpl::NPP_SetWindow(NPWindow* window_info) {
+ HWND parent_window = reinterpret_cast<HWND>(window_info->window);
if (!IsWindow(parent_window)) {
// No window created yet. Ignore this call.
if (!IsWindow(hwnd()))
« no previous file with comments | « webkit/default_plugin/plugin_impl_win.h ('k') | webkit/default_plugin/plugin_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698