OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "webkit/plugins/npapi/webplugin_delegate_impl.h" | 5 #include "webkit/plugins/npapi/webplugin_delegate_impl.h" |
6 | 6 |
7 #include <map> | 7 #include <map> |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
285 windowed_did_set_window_(false), | 285 windowed_did_set_window_(false), |
286 plugin_wnd_proc_(NULL), | 286 plugin_wnd_proc_(NULL), |
287 last_message_(0), | 287 last_message_(0), |
288 is_calling_wndproc(false), | 288 is_calling_wndproc(false), |
289 dummy_window_for_activation_(NULL), | 289 dummy_window_for_activation_(NULL), |
290 dummy_window_parent_(NULL), | 290 dummy_window_parent_(NULL), |
291 old_dummy_window_proc_(NULL), | 291 old_dummy_window_proc_(NULL), |
292 handle_event_message_filter_hook_(NULL), | 292 handle_event_message_filter_hook_(NULL), |
293 handle_event_pump_messages_event_(NULL), | 293 handle_event_pump_messages_event_(NULL), |
294 user_gesture_message_posted_(false), | 294 user_gesture_message_posted_(false), |
295 ALLOW_THIS_IN_INITIALIZER_LIST(user_gesture_msg_factory_(this)), | 295 user_gesture_msg_factory_(this), |
296 handle_event_depth_(0), | 296 handle_event_depth_(0), |
297 mouse_hook_(NULL), | 297 mouse_hook_(NULL), |
298 first_set_window_call_(true), | 298 first_set_window_call_(true), |
299 plugin_has_focus_(false), | 299 plugin_has_focus_(false), |
300 has_webkit_focus_(false), | 300 has_webkit_focus_(false), |
301 containing_view_has_focus_(true), | 301 containing_view_has_focus_(true), |
302 creation_succeeded_(false) { | 302 creation_succeeded_(false) { |
303 memset(&window_, 0, sizeof(window_)); | 303 memset(&window_, 0, sizeof(window_)); |
304 | 304 |
305 const WebPluginInfo& plugin_info = instance_->plugin_lib()->plugin_info(); | 305 const WebPluginInfo& plugin_info = instance_->plugin_lib()->plugin_info(); |
(...skipping 1231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1537 ::ReleaseCapture(); | 1537 ::ReleaseCapture(); |
1538 break; | 1538 break; |
1539 | 1539 |
1540 default: | 1540 default: |
1541 break; | 1541 break; |
1542 } | 1542 } |
1543 } | 1543 } |
1544 | 1544 |
1545 } // namespace npapi | 1545 } // namespace npapi |
1546 } // namespace webkit | 1546 } // namespace webkit |
OLD | NEW |