Chromium Code Reviews| 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 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 628 const WebKit::WebSecurityOrigin& origin, | 628 const WebKit::WebSecurityOrigin& origin, |
| 629 const WebKit::WebURL& target); | 629 const WebKit::WebURL& target); |
| 630 virtual void didExhaustMemoryAvailableForScript(WebKit::WebFrame* frame); | 630 virtual void didExhaustMemoryAvailableForScript(WebKit::WebFrame* frame); |
| 631 virtual void didCreateScriptContext(WebKit::WebFrame* frame, | 631 virtual void didCreateScriptContext(WebKit::WebFrame* frame, |
| 632 v8::Handle<v8::Context>, | 632 v8::Handle<v8::Context>, |
| 633 int extension_group, | 633 int extension_group, |
| 634 int world_id); | 634 int world_id); |
| 635 virtual void willReleaseScriptContext(WebKit::WebFrame* frame, | 635 virtual void willReleaseScriptContext(WebKit::WebFrame* frame, |
| 636 v8::Handle<v8::Context>, | 636 v8::Handle<v8::Context>, |
| 637 int world_id); | 637 int world_id); |
| 638 virtual void didChangeScrollOffset(WebKit::WebFrame* frame); | 638 virtual void didChangeScrollOffset(WebKit::WebFrame* frame); |
|
darin (slow to review)
2013/02/19 06:58:33
nit: it looks like willInsertBody should be insert
James Simonsen
2013/02/19 23:08:58
Done.
| |
| 639 #if defined(OS_ANDROID) | 639 #if defined(OS_ANDROID) |
| 640 virtual void didFirstVisuallyNonEmptyLayout(WebKit::WebFrame*) OVERRIDE; | 640 virtual void didFirstVisuallyNonEmptyLayout(WebKit::WebFrame*) OVERRIDE; |
| 641 #endif | 641 #endif |
| 642 virtual void didChangeContentsSize(WebKit::WebFrame* frame, | 642 virtual void didChangeContentsSize(WebKit::WebFrame* frame, |
| 643 const WebKit::WebSize& size); | 643 const WebKit::WebSize& size); |
| 644 virtual void reportFindInPageMatchCount(int request_id, | 644 virtual void reportFindInPageMatchCount(int request_id, |
| 645 int count, | 645 int count, |
| 646 bool final_update); | 646 bool final_update); |
| 647 virtual void reportFindInPageSelection(int request_id, | 647 virtual void reportFindInPageSelection(int request_id, |
| 648 int active_match_ordinal, | 648 int active_match_ordinal, |
| (...skipping 24 matching lines...) Expand all Loading... | |
| 673 WebKit::WebFrame* targetFrame, | 673 WebKit::WebFrame* targetFrame, |
| 674 WebKit::WebSecurityOrigin targetOrigin, | 674 WebKit::WebSecurityOrigin targetOrigin, |
| 675 WebKit::WebDOMMessageEvent event) OVERRIDE; | 675 WebKit::WebDOMMessageEvent event) OVERRIDE; |
| 676 virtual WebKit::WebString userAgentOverride( | 676 virtual WebKit::WebString userAgentOverride( |
| 677 WebKit::WebFrame* frame, | 677 WebKit::WebFrame* frame, |
| 678 const WebKit::WebURL& url) OVERRIDE; | 678 const WebKit::WebURL& url) OVERRIDE; |
| 679 virtual bool allowWebGL(WebKit::WebFrame* frame, bool default_value) OVERRIDE; | 679 virtual bool allowWebGL(WebKit::WebFrame* frame, bool default_value) OVERRIDE; |
| 680 virtual void didLoseWebGLContext( | 680 virtual void didLoseWebGLContext( |
| 681 WebKit::WebFrame* frame, | 681 WebKit::WebFrame* frame, |
| 682 int arb_robustness_status_code) OVERRIDE; | 682 int arb_robustness_status_code) OVERRIDE; |
| 683 virtual void willInsertBody(WebKit::WebFrame* frame) OVERRIDE; | |
| 683 | 684 |
| 684 // WebKit::WebPageSerializerClient implementation ---------------------------- | 685 // WebKit::WebPageSerializerClient implementation ---------------------------- |
| 685 | 686 |
| 686 virtual void didSerializeDataForFrame( | 687 virtual void didSerializeDataForFrame( |
| 687 const WebKit::WebURL& frame_url, | 688 const WebKit::WebURL& frame_url, |
| 688 const WebKit::WebCString& data, | 689 const WebKit::WebCString& data, |
| 689 PageSerializationStatus status) OVERRIDE; | 690 PageSerializationStatus status) OVERRIDE; |
| 690 | 691 |
| 691 // RenderView implementation ------------------------------------------------- | 692 // RenderView implementation ------------------------------------------------- |
| 692 | 693 |
| (...skipping 901 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1594 // use the Observer interface to filter IPC messages and receive frame change | 1595 // use the Observer interface to filter IPC messages and receive frame change |
| 1595 // notifications. | 1596 // notifications. |
| 1596 // --------------------------------------------------------------------------- | 1597 // --------------------------------------------------------------------------- |
| 1597 | 1598 |
| 1598 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1599 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1599 }; | 1600 }; |
| 1600 | 1601 |
| 1601 } // namespace content | 1602 } // namespace content |
| 1602 | 1603 |
| 1603 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1604 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |