| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; | 348 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; |
| 349 virtual void GotFocus() OVERRIDE; | 349 virtual void GotFocus() OVERRIDE; |
| 350 virtual void LostCapture() OVERRIDE; | 350 virtual void LostCapture() OVERRIDE; |
| 351 virtual void LostMouseLock() OVERRIDE; | 351 virtual void LostMouseLock() OVERRIDE; |
| 352 virtual void ForwardMouseEvent( | 352 virtual void ForwardMouseEvent( |
| 353 const WebKit::WebMouseEvent& mouse_event) OVERRIDE; | 353 const WebKit::WebMouseEvent& mouse_event) OVERRIDE; |
| 354 virtual void OnMouseActivate() OVERRIDE; | 354 virtual void OnMouseActivate() OVERRIDE; |
| 355 virtual void ForwardKeyboardEvent( | 355 virtual void ForwardKeyboardEvent( |
| 356 const NativeWebKeyboardEvent& key_event) OVERRIDE; | 356 const NativeWebKeyboardEvent& key_event) OVERRIDE; |
| 357 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; | 357 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; |
| 358 virtual void StopHangMonitorTimeout() OVERRIDE; |
| 358 | 359 |
| 359 // Creates a new RenderView with the given route id. | 360 // Creates a new RenderView with the given route id. |
| 360 void CreateNewWindow(int route_id, | 361 void CreateNewWindow(int route_id, |
| 361 const ViewHostMsg_CreateWindow_Params& params); | 362 const ViewHostMsg_CreateWindow_Params& params); |
| 362 | 363 |
| 363 // Creates a new RenderWidget with the given route id. |popup_type| indicates | 364 // Creates a new RenderWidget with the given route id. |popup_type| indicates |
| 364 // if this widget is a popup and what kind of popup it is (select, autofill). | 365 // if this widget is a popup and what kind of popup it is (select, autofill). |
| 365 void CreateNewWidget(int route_id, WebKit::WebPopupType popup_type); | 366 void CreateNewWidget(int route_id, WebKit::WebPopupType popup_type); |
| 366 | 367 |
| 367 // Creates a full screen RenderWidget. | 368 // Creates a full screen RenderWidget. |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 618 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 619 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
| 619 }; | 620 }; |
| 620 | 621 |
| 621 #if defined(COMPILER_MSVC) | 622 #if defined(COMPILER_MSVC) |
| 622 #pragma warning(pop) | 623 #pragma warning(pop) |
| 623 #endif | 624 #endif |
| 624 | 625 |
| 625 } // namespace content | 626 } // namespace content |
| 626 | 627 |
| 627 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 628 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| OLD | NEW |