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 <set> | 8 #include <set> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 1046 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1057 float scaling_increment); | 1057 float scaling_increment); |
1058 | 1058 |
1059 void AltErrorPageFinished(WebKit::WebFrame* frame, | 1059 void AltErrorPageFinished(WebKit::WebFrame* frame, |
1060 const WebKit::WebURLError& original_error, | 1060 const WebKit::WebURLError& original_error, |
1061 const std::string& html); | 1061 const std::string& html); |
1062 | 1062 |
1063 // Check whether the preferred size has changed. | 1063 // Check whether the preferred size has changed. |
1064 void CheckPreferredSize(); | 1064 void CheckPreferredSize(); |
1065 | 1065 |
1066 WebKit::WebGraphicsContext3D* CreateGraphicsContext3D( | 1066 WebKit::WebGraphicsContext3D* CreateGraphicsContext3D( |
1067 const WebKit::WebGraphicsContext3D::Attributes& attributes); | 1067 const WebKit::WebGraphicsContext3D::Attributes& attributes, |
| 1068 CommandBufferProxyImpl** proxy); |
1068 | 1069 |
1069 // This method walks the entire frame tree for this RenderView and sends an | 1070 // This method walks the entire frame tree for this RenderView and sends an |
1070 // update to the browser process as described in the | 1071 // update to the browser process as described in the |
1071 // ViewHostMsg_FrameTreeUpdated comments. If |exclude_frame_subtree| | 1072 // ViewHostMsg_FrameTreeUpdated comments. If |exclude_frame_subtree| |
1072 // frame is non-NULL, the subtree starting at that frame not included in the | 1073 // frame is non-NULL, the subtree starting at that frame not included in the |
1073 // serialized form. | 1074 // serialized form. |
1074 // This is used when a frame is going to be removed from the tree. | 1075 // This is used when a frame is going to be removed from the tree. |
1075 void SendUpdatedFrameTree(WebKit::WebFrame* exclude_frame_subtree); | 1076 void SendUpdatedFrameTree(WebKit::WebFrame* exclude_frame_subtree); |
1076 | 1077 |
1077 // Recursively creates a DOM frame tree starting with |frame|, based on | 1078 // Recursively creates a DOM frame tree starting with |frame|, based on |
(...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1586 // use the Observer interface to filter IPC messages and receive frame change | 1587 // use the Observer interface to filter IPC messages and receive frame change |
1587 // notifications. | 1588 // notifications. |
1588 // --------------------------------------------------------------------------- | 1589 // --------------------------------------------------------------------------- |
1589 | 1590 |
1590 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1591 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1591 }; | 1592 }; |
1592 | 1593 |
1593 } // namespace content | 1594 } // namespace content |
1594 | 1595 |
1595 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1596 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |