| 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_RENDERER_RENDER_VIEW_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 484 | 484 |
| 485 enum ErrorPageType { | 485 enum ErrorPageType { |
| 486 DNS_ERROR, | 486 DNS_ERROR, |
| 487 HTTP_404, | 487 HTTP_404, |
| 488 CONNECTION_ERROR, | 488 CONNECTION_ERROR, |
| 489 }; | 489 }; |
| 490 | 490 |
| 491 // RenderWidgetOwnerDelegate implementation ---------------------------------- | 491 // RenderWidgetOwnerDelegate implementation ---------------------------------- |
| 492 | 492 |
| 493 void RenderWidgetDidSetColorProfile( | 493 void RenderWidgetDidSetColorProfile( |
| 494 const std::vector<char>& color_profile) override; | 494 const gfx::ICCProfile& color_profile) override; |
| 495 void RenderWidgetFocusChangeComplete() override; | 495 void RenderWidgetFocusChangeComplete() override; |
| 496 bool DoesRenderWidgetHaveTouchEventHandlersAt( | 496 bool DoesRenderWidgetHaveTouchEventHandlersAt( |
| 497 const gfx::Point& point) const override; | 497 const gfx::Point& point) const override; |
| 498 bool RenderWidgetWillHandleMouseEvent( | 498 bool RenderWidgetWillHandleMouseEvent( |
| 499 const blink::WebMouseEvent& event) override; | 499 const blink::WebMouseEvent& event) override; |
| 500 | 500 |
| 501 // Old WebFrameClient implementations ---------------------------------------- | 501 // Old WebFrameClient implementations ---------------------------------------- |
| 502 | 502 |
| 503 // RenderViewImpl used to be a WebFrameClient, but now RenderFrameImpl is the | 503 // RenderViewImpl used to be a WebFrameClient, but now RenderFrameImpl is the |
| 504 // WebFrameClient. However, many implementations of WebFrameClient methods | 504 // WebFrameClient. However, many implementations of WebFrameClient methods |
| (...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 843 // use the Observer interface to filter IPC messages and receive frame change | 843 // use the Observer interface to filter IPC messages and receive frame change |
| 844 // notifications. | 844 // notifications. |
| 845 // --------------------------------------------------------------------------- | 845 // --------------------------------------------------------------------------- |
| 846 | 846 |
| 847 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 847 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 848 }; | 848 }; |
| 849 | 849 |
| 850 } // namespace content | 850 } // namespace content |
| 851 | 851 |
| 852 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 852 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |