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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 // RenderWidgetHost public overrides. | 307 // RenderWidgetHost public overrides. |
308 virtual void Init() OVERRIDE; | 308 virtual void Init() OVERRIDE; |
309 virtual void Shutdown() OVERRIDE; | 309 virtual void Shutdown() OVERRIDE; |
310 virtual void WasHidden() OVERRIDE; | 310 virtual void WasHidden() OVERRIDE; |
311 virtual void WasShown(const ui::LatencyInfo& latency_info) OVERRIDE; | 311 virtual void WasShown(const ui::LatencyInfo& latency_info) OVERRIDE; |
312 virtual bool IsRenderView() const OVERRIDE; | 312 virtual bool IsRenderView() const OVERRIDE; |
313 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; | 313 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; |
314 virtual void GotFocus() OVERRIDE; | 314 virtual void GotFocus() OVERRIDE; |
315 virtual void LostCapture() OVERRIDE; | 315 virtual void LostCapture() OVERRIDE; |
316 virtual void LostMouseLock() OVERRIDE; | 316 virtual void LostMouseLock() OVERRIDE; |
| 317 virtual void SetIsLoading(bool is_loading) OVERRIDE; |
317 virtual void ForwardMouseEvent( | 318 virtual void ForwardMouseEvent( |
318 const blink::WebMouseEvent& mouse_event) OVERRIDE; | 319 const blink::WebMouseEvent& mouse_event) OVERRIDE; |
319 virtual void OnPointerEventActivate() OVERRIDE; | 320 virtual void OnPointerEventActivate() OVERRIDE; |
320 virtual void ForwardKeyboardEvent( | 321 virtual void ForwardKeyboardEvent( |
321 const NativeWebKeyboardEvent& key_event) OVERRIDE; | 322 const NativeWebKeyboardEvent& key_event) OVERRIDE; |
322 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; | 323 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; |
323 | 324 |
324 // Creates a new RenderView with the given route id. | 325 // Creates a new RenderView with the given route id. |
325 void CreateNewWindow( | 326 void CreateNewWindow( |
326 int route_id, | 327 int route_id, |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
536 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 537 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
537 }; | 538 }; |
538 | 539 |
539 #if defined(COMPILER_MSVC) | 540 #if defined(COMPILER_MSVC) |
540 #pragma warning(pop) | 541 #pragma warning(pop) |
541 #endif | 542 #endif |
542 | 543 |
543 } // namespace content | 544 } // namespace content |
544 | 545 |
545 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 546 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
OLD | NEW |