| 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 668 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 679 WebKit::WebFrame* targetFrame, | 679 WebKit::WebFrame* targetFrame, |
| 680 WebKit::WebSecurityOrigin targetOrigin, | 680 WebKit::WebSecurityOrigin targetOrigin, |
| 681 WebKit::WebDOMMessageEvent event) OVERRIDE; | 681 WebKit::WebDOMMessageEvent event) OVERRIDE; |
| 682 virtual WebKit::WebString userAgentOverride( | 682 virtual WebKit::WebString userAgentOverride( |
| 683 WebKit::WebFrame* frame, | 683 WebKit::WebFrame* frame, |
| 684 const WebKit::WebURL& url) OVERRIDE; | 684 const WebKit::WebURL& url) OVERRIDE; |
| 685 virtual bool allowWebGL(WebKit::WebFrame* frame, bool default_value) OVERRIDE; | 685 virtual bool allowWebGL(WebKit::WebFrame* frame, bool default_value) OVERRIDE; |
| 686 virtual void didLoseWebGLContext( | 686 virtual void didLoseWebGLContext( |
| 687 WebKit::WebFrame* frame, | 687 WebKit::WebFrame* frame, |
| 688 int arb_robustness_status_code) OVERRIDE; | 688 int arb_robustness_status_code) OVERRIDE; |
| 689 virtual void willInsertBody(WebKit::WebFrame* frame) OVERRIDE; |
| 689 | 690 |
| 690 // WebKit::WebPageSerializerClient implementation ---------------------------- | 691 // WebKit::WebPageSerializerClient implementation ---------------------------- |
| 691 | 692 |
| 692 virtual void didSerializeDataForFrame( | 693 virtual void didSerializeDataForFrame( |
| 693 const WebKit::WebURL& frame_url, | 694 const WebKit::WebURL& frame_url, |
| 694 const WebKit::WebCString& data, | 695 const WebKit::WebCString& data, |
| 695 PageSerializationStatus status) OVERRIDE; | 696 PageSerializationStatus status) OVERRIDE; |
| 696 | 697 |
| 697 // RenderView implementation ------------------------------------------------- | 698 // RenderView implementation ------------------------------------------------- |
| 698 | 699 |
| (...skipping 899 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1598 // use the Observer interface to filter IPC messages and receive frame change | 1599 // use the Observer interface to filter IPC messages and receive frame change |
| 1599 // notifications. | 1600 // notifications. |
| 1600 // --------------------------------------------------------------------------- | 1601 // --------------------------------------------------------------------------- |
| 1601 | 1602 |
| 1602 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1603 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1603 }; | 1604 }; |
| 1604 | 1605 |
| 1605 } // namespace content | 1606 } // namespace content |
| 1606 | 1607 |
| 1607 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1608 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |