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

Unified Diff: chrome/plugin/plugin_thread.h

Issue 87012: plugins: move NativeLibrary into base. (Closed)
Patch Set: more fixes from trybot Created 11 years, 8 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
Index: chrome/plugin/plugin_thread.h
diff --git a/chrome/plugin/plugin_thread.h b/chrome/plugin/plugin_thread.h
index 9b999e28340f1ed5e0f6ef40287a886858f8dded..a110a2cd277160551395d042443b8e51f7192a0a 100644
--- a/chrome/plugin/plugin_thread.h
+++ b/chrome/plugin/plugin_thread.h
@@ -6,6 +6,7 @@
#define CHROME_PLUGIN_PLUGIN_THREAD_H_
#include "base/file_path.h"
+#include "base/native_library.h"
#include "chrome/common/child_thread.h"
#include "chrome/plugin/plugin_channel.h"
@@ -35,7 +36,7 @@ class PluginThread : public ChildThread {
scoped_ptr<NotificationService> notification_service_;
// The plugin module which is preloaded in Init
- HMODULE preloaded_plugin_module_;
+ base::NativeLibrary preloaded_plugin_module_;
// Points to the plugin file that this process hosts.
FilePath plugin_path_;

Powered by Google App Engine
This is Rietveld 408576698