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

Unified Diff: content/child/npapi/webplugin_delegate_impl_win.cc

Issue 1210013007: clang/win: Fix warnings to prepare for building without -Wno-reorder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clang-unsequenced
Patch Set: Created 5 years, 6 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 | « components/wifi/wifi_service_win.cc ('k') | content/common/dwrite_font_platform_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/npapi/webplugin_delegate_impl_win.cc
diff --git a/content/child/npapi/webplugin_delegate_impl_win.cc b/content/child/npapi/webplugin_delegate_impl_win.cc
index 897745b86d252aa49ff5778960a2a62adc36d54a..5ebab62933c3b8e11f5b4b1cb4c1a023dcd53579 100644
--- a/content/child/npapi/webplugin_delegate_impl_win.cc
+++ b/content/child/npapi/webplugin_delegate_impl_win.cc
@@ -221,26 +221,25 @@ LRESULT CALLBACK WebPluginDelegateImpl::MouseHookProc(
return CallNextHookEx(NULL, code, wParam, lParam);
}
-WebPluginDelegateImpl::WebPluginDelegateImpl(
- WebPlugin* plugin,
- PluginInstance* instance)
- : instance_(instance),
- quirks_(0),
- plugin_(plugin),
- windowless_(false),
- windowed_handle_(NULL),
+WebPluginDelegateImpl::WebPluginDelegateImpl(WebPlugin* plugin,
+ PluginInstance* instance)
+ : windowed_handle_(NULL),
windowed_did_set_window_(false),
+ windowless_(false),
+ plugin_(plugin),
+ instance_(instance),
plugin_wnd_proc_(NULL),
last_message_(0),
is_calling_wndproc(false),
+ quirks_(0),
dummy_window_for_activation_(NULL),
dummy_window_parent_(NULL),
old_dummy_window_proc_(NULL),
handle_event_message_filter_hook_(NULL),
handle_event_pump_messages_event_(NULL),
user_gesture_message_posted_(false),
- handle_event_depth_(0),
mouse_hook_(NULL),
+ handle_event_depth_(0),
first_set_window_call_(true),
plugin_has_focus_(false),
has_webkit_focus_(false),
« no previous file with comments | « components/wifi/wifi_service_win.cc ('k') | content/common/dwrite_font_platform_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698