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 <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 // RenderWidgetHost public overrides. | 308 // RenderWidgetHost public overrides. |
309 virtual void Init() OVERRIDE; | 309 virtual void Init() OVERRIDE; |
310 virtual void Shutdown() OVERRIDE; | 310 virtual void Shutdown() OVERRIDE; |
311 virtual void WasHidden() OVERRIDE; | 311 virtual void WasHidden() OVERRIDE; |
312 virtual void WasShown(const ui::LatencyInfo& latency_info) OVERRIDE; | 312 virtual void WasShown(const ui::LatencyInfo& latency_info) OVERRIDE; |
313 virtual bool IsRenderView() const OVERRIDE; | 313 virtual bool IsRenderView() const OVERRIDE; |
314 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; | 314 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; |
315 virtual void GotFocus() OVERRIDE; | 315 virtual void GotFocus() OVERRIDE; |
316 virtual void LostCapture() OVERRIDE; | 316 virtual void LostCapture() OVERRIDE; |
317 virtual void LostMouseLock() OVERRIDE; | 317 virtual void LostMouseLock() OVERRIDE; |
| 318 virtual void SetIsLoading(bool is_loading) OVERRIDE; |
318 virtual void ForwardMouseEvent( | 319 virtual void ForwardMouseEvent( |
319 const blink::WebMouseEvent& mouse_event) OVERRIDE; | 320 const blink::WebMouseEvent& mouse_event) OVERRIDE; |
320 virtual void OnPointerEventActivate() OVERRIDE; | 321 virtual void OnPointerEventActivate() OVERRIDE; |
321 virtual void ForwardKeyboardEvent( | 322 virtual void ForwardKeyboardEvent( |
322 const NativeWebKeyboardEvent& key_event) OVERRIDE; | 323 const NativeWebKeyboardEvent& key_event) OVERRIDE; |
323 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; | 324 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; |
324 | 325 |
325 // Creates a new RenderView with the given route id. | 326 // Creates a new RenderView with the given route id. |
326 void CreateNewWindow( | 327 void CreateNewWindow( |
327 int route_id, | 328 int route_id, |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
556 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 557 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
557 }; | 558 }; |
558 | 559 |
559 #if defined(COMPILER_MSVC) | 560 #if defined(COMPILER_MSVC) |
560 #pragma warning(pop) | 561 #pragma warning(pop) |
561 #endif | 562 #endif |
562 | 563 |
563 } // namespace content | 564 } // namespace content |
564 | 565 |
565 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 566 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
OLD | NEW |