| 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 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 648 virtual void willStartUsingPeerConnectionHandler(WebKit::WebFrame* frame, | 648 virtual void willStartUsingPeerConnectionHandler(WebKit::WebFrame* frame, |
| 649 WebKit::WebRTCPeerConnectionHandler* handler) OVERRIDE; | 649 WebKit::WebRTCPeerConnectionHandler* handler) OVERRIDE; |
| 650 virtual bool willCheckAndDispatchMessageEvent( | 650 virtual bool willCheckAndDispatchMessageEvent( |
| 651 WebKit::WebFrame* sourceFrame, | 651 WebKit::WebFrame* sourceFrame, |
| 652 WebKit::WebFrame* targetFrame, | 652 WebKit::WebFrame* targetFrame, |
| 653 WebKit::WebSecurityOrigin targetOrigin, | 653 WebKit::WebSecurityOrigin targetOrigin, |
| 654 WebKit::WebDOMMessageEvent event) OVERRIDE; | 654 WebKit::WebDOMMessageEvent event) OVERRIDE; |
| 655 virtual WebKit::WebString userAgentOverride( | 655 virtual WebKit::WebString userAgentOverride( |
| 656 WebKit::WebFrame* frame, | 656 WebKit::WebFrame* frame, |
| 657 const WebKit::WebURL& url) OVERRIDE; | 657 const WebKit::WebURL& url) OVERRIDE; |
| 658 virtual bool allowWebGL(WebKit::WebFrame* frame, bool default_value) OVERRIDE; |
| 659 virtual void didLoseWebGLContext( |
| 660 WebKit::WebFrame* frame, |
| 661 int arb_robustness_status_code) OVERRIDE; |
| 658 | 662 |
| 659 // WebKit::WebPageSerializerClient implementation ---------------------------- | 663 // WebKit::WebPageSerializerClient implementation ---------------------------- |
| 660 | 664 |
| 661 virtual void didSerializeDataForFrame( | 665 virtual void didSerializeDataForFrame( |
| 662 const WebKit::WebURL& frame_url, | 666 const WebKit::WebURL& frame_url, |
| 663 const WebKit::WebCString& data, | 667 const WebKit::WebCString& data, |
| 664 PageSerializationStatus status) OVERRIDE; | 668 PageSerializationStatus status) OVERRIDE; |
| 665 | 669 |
| 666 // RenderView implementation ------------------------------------------------- | 670 // RenderView implementation ------------------------------------------------- |
| 667 | 671 |
| (...skipping 880 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1548 // use the Observer interface to filter IPC messages and receive frame change | 1552 // use the Observer interface to filter IPC messages and receive frame change |
| 1549 // notifications. | 1553 // notifications. |
| 1550 // --------------------------------------------------------------------------- | 1554 // --------------------------------------------------------------------------- |
| 1551 | 1555 |
| 1552 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1556 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1553 }; | 1557 }; |
| 1554 | 1558 |
| 1555 } // namespace content | 1559 } // namespace content |
| 1556 | 1560 |
| 1557 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1561 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |