OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 "content/renderer/browser_plugin/browser_plugin.h" | 5 #include "content/renderer/browser_plugin/browser_plugin.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/json/json_string_value_serializer.h" | 8 #include "base/json/json_string_value_serializer.h" |
9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
10 #include "base/strings/string_number_conversions.h" | 10 #include "base/strings/string_number_conversions.h" |
(...skipping 1295 matching lines...) Loading... |
1306 bool BrowserPlugin::HandleMouseLockedInputEvent( | 1306 bool BrowserPlugin::HandleMouseLockedInputEvent( |
1307 const blink::WebMouseEvent& event) { | 1307 const blink::WebMouseEvent& event) { |
1308 browser_plugin_manager()->Send( | 1308 browser_plugin_manager()->Send( |
1309 new BrowserPluginHostMsg_HandleInputEvent(render_view_routing_id_, | 1309 new BrowserPluginHostMsg_HandleInputEvent(render_view_routing_id_, |
1310 guest_instance_id_, | 1310 guest_instance_id_, |
1311 plugin_rect_, | 1311 plugin_rect_, |
1312 &event)); | 1312 &event)); |
1313 return true; | 1313 return true; |
1314 } | 1314 } |
1315 | 1315 |
| 1316 bool BrowserPlugin::shouldPersist() const { return true; } |
| 1317 |
1316 } // namespace content | 1318 } // namespace content |
OLD | NEW |