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

Unified Diff: webkit/default_plugin/plugin_main.cc

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/default_plugin/plugin_impl_win.cc ('k') | webkit/glue/plugins/plugin_list.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/default_plugin/plugin_main.cc
===================================================================
--- webkit/default_plugin/plugin_main.cc (revision 47729)
+++ webkit/default_plugin/plugin_main.cc (working copy)
@@ -10,8 +10,6 @@
#include "webkit/glue/webkit_glue.h"
namespace default_plugin {
-
-#if defined(OS_WIN)
//
// Forward declare the linker-provided pseudo variable for the
// current module handle.
@@ -22,7 +20,6 @@
inline HMODULE GetCurrentModuleHandle() {
return reinterpret_cast<HINSTANCE>(&__ImageBase);
}
-#endif
// Initialized in NP_Initialize.
NPNetscapeFuncs* g_browser = NULL;
@@ -74,53 +71,13 @@
static_cast<unsigned int>(script.length());
NPVariant result_var;
- g_browser->evaluate(instance, window_obj,
- &script_string, &result_var);
+ NPError result = g_browser->evaluate(instance, window_obj,
+ &script_string, &result_var);
g_browser->releaseobject(window_obj);
}
} // namespace CHROMIUM_DefaultPluginTest
-bool NegotiateModels(NPP instance) {
-#if defined(OS_MACOSX)
- NPError err;
- // Set drawing model to core graphics
- NPBool supportsCoreGraphics = FALSE;
- err = g_browser->getvalue(instance,
- NPNVsupportsCoreGraphicsBool,
- &supportsCoreGraphics);
- if (err != NPERR_NO_ERROR || !supportsCoreGraphics) {
- NOTREACHED();
- return false;
- }
- err = g_browser->setvalue(instance,
- NPPVpluginDrawingModel,
- (void*)NPDrawingModelCoreGraphics);
- if (err != NPERR_NO_ERROR) {
- NOTREACHED();
- return false;
- }
-
- // Set event model to cocoa
- NPBool supportsCocoaEvents = FALSE;
- err = g_browser->getvalue(instance,
- NPNVsupportsCocoaBool,
- &supportsCocoaEvents);
- if (err != NPERR_NO_ERROR || !supportsCocoaEvents) {
- NOTREACHED();
- return false;
- }
- err = g_browser->setvalue(instance,
- NPPVpluginEventModel,
- (void*)NPEventModelCocoa);
- if (err != NPERR_NO_ERROR) {
- NOTREACHED();
- return false;
- }
-#endif
- return true;
-}
-
NPError NPP_New(NPMIMEType plugin_type, NPP instance, uint16 mode, int16 argc,
char* argn[], char* argv[], NPSavedData* saved) {
if (instance == NULL)
@@ -138,19 +95,10 @@
return NPERR_GENERIC_ERROR;
}
- if (!NegotiateModels(instance))
- return NPERR_INCOMPATIBLE_VERSION_ERROR;
-
+
PluginInstallerImpl* plugin_impl = new PluginInstallerImpl(mode);
- plugin_impl->Initialize(
-#if defined(OS_WIN)
- GetCurrentModuleHandle(),
-#else
- NULL,
-#endif
- instance, plugin_type, argc,
+ plugin_impl->Initialize(GetCurrentModuleHandle(), instance, plugin_type, argc,
argn, argv);
-
instance->pdata = reinterpret_cast<void*>(plugin_impl);
return NPERR_NO_ERROR;
}
@@ -191,7 +139,8 @@
return NPERR_GENERIC_ERROR;
}
- if (!plugin_impl->NPP_SetWindow(window_info)) {
+ HWND window_handle = reinterpret_cast<HWND>(window_info->window);
+ if (!plugin_impl->SetWindow(window_handle)) {
delete plugin_impl;
return NPERR_GENERIC_ERROR;
}
« no previous file with comments | « webkit/default_plugin/plugin_impl_win.cc ('k') | webkit/glue/plugins/plugin_list.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698