Chromium Code Reviews| 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 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 113 void DragTargetDragEnter(const DropData& drop_data, | 113 void DragTargetDragEnter(const DropData& drop_data, |
| 114 const gfx::Point& client_pt, | 114 const gfx::Point& client_pt, |
| 115 const gfx::Point& screen_pt, | 115 const gfx::Point& screen_pt, |
| 116 blink::WebDragOperationsMask operations_allowed, | 116 blink::WebDragOperationsMask operations_allowed, |
| 117 int key_modifiers) override; | 117 int key_modifiers) override; |
| 118 void DragTargetDragOver(const gfx::Point& client_pt, | 118 void DragTargetDragOver(const gfx::Point& client_pt, |
| 119 const gfx::Point& screen_pt, | 119 const gfx::Point& screen_pt, |
| 120 blink::WebDragOperationsMask operations_allowed, | 120 blink::WebDragOperationsMask operations_allowed, |
| 121 int key_modifiers) override; | 121 int key_modifiers) override; |
| 122 void DragTargetDragLeave() override; | 122 void DragTargetDragLeave() override; |
| 123 void DragTargetDrop(const gfx::Point& client_pt, | 123 void DragTargetDrop(const DropData& drop_data, |
| 124 bool is_drop_data_valid, | |
|
aelias_OOO_until_Jul13
2016/03/02 00:03:19
How about instead adding a boolean member to DropD
hush (inactive)
2016/03/02 02:35:11
Of course, I will do that.
| |
| 125 const gfx::Point& client_pt, | |
| 124 const gfx::Point& screen_pt, | 126 const gfx::Point& screen_pt, |
| 125 int key_modifiers) override; | 127 int key_modifiers) override; |
| 126 void EnableAutoResize(const gfx::Size& min_size, | 128 void EnableAutoResize(const gfx::Size& min_size, |
| 127 const gfx::Size& max_size) override; | 129 const gfx::Size& max_size) override; |
| 128 void DisableAutoResize(const gfx::Size& new_size) override; | 130 void DisableAutoResize(const gfx::Size& new_size) override; |
| 129 void EnablePreferredSizeMode() override; | 131 void EnablePreferredSizeMode() override; |
| 130 void ExecuteMediaPlayerActionAtLocation( | 132 void ExecuteMediaPlayerActionAtLocation( |
| 131 const gfx::Point& location, | 133 const gfx::Point& location, |
| 132 const blink::WebMediaPlayerAction& action) override; | 134 const blink::WebMediaPlayerAction& action) override; |
| 133 void ExecutePluginActionAtLocation( | 135 void ExecutePluginActionAtLocation( |
| (...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 431 bool render_view_ready_on_process_launch_; | 433 bool render_view_ready_on_process_launch_; |
| 432 | 434 |
| 433 base::WeakPtrFactory<RenderViewHostImpl> weak_factory_; | 435 base::WeakPtrFactory<RenderViewHostImpl> weak_factory_; |
| 434 | 436 |
| 435 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 437 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
| 436 }; | 438 }; |
| 437 | 439 |
| 438 } // namespace content | 440 } // namespace content |
| 439 | 441 |
| 440 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 442 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| OLD | NEW |