| 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 <deque> | 8 #include <deque> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 646 WebKit::WebDOMMessageEvent event); | 646 WebKit::WebDOMMessageEvent event); |
| 647 virtual WebKit::WebString acceptLanguages(); | 647 virtual WebKit::WebString acceptLanguages(); |
| 648 virtual WebKit::WebString userAgentOverride( | 648 virtual WebKit::WebString userAgentOverride( |
| 649 WebKit::WebFrame* frame, | 649 WebKit::WebFrame* frame, |
| 650 const WebKit::WebURL& url); | 650 const WebKit::WebURL& url); |
| 651 virtual WebKit::WebString doNotTrackValue(WebKit::WebFrame* frame); | 651 virtual WebKit::WebString doNotTrackValue(WebKit::WebFrame* frame); |
| 652 virtual bool allowWebGL(WebKit::WebFrame* frame, bool default_value); | 652 virtual bool allowWebGL(WebKit::WebFrame* frame, bool default_value); |
| 653 virtual void didLoseWebGLContext( | 653 virtual void didLoseWebGLContext( |
| 654 WebKit::WebFrame* frame, | 654 WebKit::WebFrame* frame, |
| 655 int arb_robustness_status_code); | 655 int arb_robustness_status_code); |
| 656 virtual bool allowWebGLDebugRendererInfo(WebKit::WebFrame* frame) OVERRIDE; |
| 656 | 657 |
| 657 // WebKit::WebPageSerializerClient implementation ---------------------------- | 658 // WebKit::WebPageSerializerClient implementation ---------------------------- |
| 658 | 659 |
| 659 virtual void didSerializeDataForFrame( | 660 virtual void didSerializeDataForFrame( |
| 660 const WebKit::WebURL& frame_url, | 661 const WebKit::WebURL& frame_url, |
| 661 const WebKit::WebCString& data, | 662 const WebKit::WebCString& data, |
| 662 PageSerializationStatus status) OVERRIDE; | 663 PageSerializationStatus status) OVERRIDE; |
| 663 | 664 |
| 664 // RenderView implementation ------------------------------------------------- | 665 // RenderView implementation ------------------------------------------------- |
| 665 | 666 |
| (...skipping 897 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1563 // use the Observer interface to filter IPC messages and receive frame change | 1564 // use the Observer interface to filter IPC messages and receive frame change |
| 1564 // notifications. | 1565 // notifications. |
| 1565 // --------------------------------------------------------------------------- | 1566 // --------------------------------------------------------------------------- |
| 1566 | 1567 |
| 1567 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1568 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1568 }; | 1569 }; |
| 1569 | 1570 |
| 1570 } // namespace content | 1571 } // namespace content |
| 1571 | 1572 |
| 1572 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1573 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |