| 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 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 490 GetCompositionCharacterBoundsTest); | 490 GetCompositionCharacterBoundsTest); |
| 491 | 491 |
| 492 enum ErrorPageType { | 492 enum ErrorPageType { |
| 493 DNS_ERROR, | 493 DNS_ERROR, |
| 494 HTTP_404, | 494 HTTP_404, |
| 495 CONNECTION_ERROR, | 495 CONNECTION_ERROR, |
| 496 }; | 496 }; |
| 497 | 497 |
| 498 // RenderWidgetOwnerDelegate implementation ---------------------------------- | 498 // RenderWidgetOwnerDelegate implementation ---------------------------------- |
| 499 | 499 |
| 500 void RenderWidgetDidSetColorProfile( | 500 void RenderWidgetDidSetColorSpace( |
| 501 const std::vector<char>& color_profile) override; | 501 const gfx::ColorSpace& color_space) override; |
| 502 void RenderWidgetFocusChangeComplete() override; | 502 void RenderWidgetFocusChangeComplete() override; |
| 503 bool DoesRenderWidgetHaveTouchEventHandlersAt( | 503 bool DoesRenderWidgetHaveTouchEventHandlersAt( |
| 504 const gfx::Point& point) const override; | 504 const gfx::Point& point) const override; |
| 505 bool RenderWidgetWillHandleMouseEvent( | 505 bool RenderWidgetWillHandleMouseEvent( |
| 506 const blink::WebMouseEvent& event) override; | 506 const blink::WebMouseEvent& event) override; |
| 507 | 507 |
| 508 // Old WebFrameClient implementations ---------------------------------------- | 508 // Old WebFrameClient implementations ---------------------------------------- |
| 509 | 509 |
| 510 // RenderViewImpl used to be a WebFrameClient, but now RenderFrameImpl is the | 510 // RenderViewImpl used to be a WebFrameClient, but now RenderFrameImpl is the |
| 511 // WebFrameClient. However, many implementations of WebFrameClient methods | 511 // WebFrameClient. However, many implementations of WebFrameClient methods |
| (...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 851 // use the Observer interface to filter IPC messages and receive frame change | 851 // use the Observer interface to filter IPC messages and receive frame change |
| 852 // notifications. | 852 // notifications. |
| 853 // --------------------------------------------------------------------------- | 853 // --------------------------------------------------------------------------- |
| 854 | 854 |
| 855 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 855 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 856 }; | 856 }; |
| 857 | 857 |
| 858 } // namespace content | 858 } // namespace content |
| 859 | 859 |
| 860 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 860 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |