| 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 619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 630 const WebKit::WebURL& target); | 630 const WebKit::WebURL& target); |
| 631 virtual void didExhaustMemoryAvailableForScript(WebKit::WebFrame* frame); | 631 virtual void didExhaustMemoryAvailableForScript(WebKit::WebFrame* frame); |
| 632 virtual void didCreateScriptContext(WebKit::WebFrame* frame, | 632 virtual void didCreateScriptContext(WebKit::WebFrame* frame, |
| 633 v8::Handle<v8::Context>, | 633 v8::Handle<v8::Context>, |
| 634 int extension_group, | 634 int extension_group, |
| 635 int world_id); | 635 int world_id); |
| 636 virtual void willReleaseScriptContext(WebKit::WebFrame* frame, | 636 virtual void willReleaseScriptContext(WebKit::WebFrame* frame, |
| 637 v8::Handle<v8::Context>, | 637 v8::Handle<v8::Context>, |
| 638 int world_id); | 638 int world_id); |
| 639 virtual void didChangeScrollOffset(WebKit::WebFrame* frame); | 639 virtual void didChangeScrollOffset(WebKit::WebFrame* frame); |
| 640 virtual void willInsertBody(WebKit::WebFrame* frame) OVERRIDE; |
| 640 #if defined(OS_ANDROID) | 641 #if defined(OS_ANDROID) |
| 641 virtual void didFirstVisuallyNonEmptyLayout(WebKit::WebFrame*) OVERRIDE; | 642 virtual void didFirstVisuallyNonEmptyLayout(WebKit::WebFrame*) OVERRIDE; |
| 642 #endif | 643 #endif |
| 643 virtual void didChangeContentsSize(WebKit::WebFrame* frame, | 644 virtual void didChangeContentsSize(WebKit::WebFrame* frame, |
| 644 const WebKit::WebSize& size); | 645 const WebKit::WebSize& size); |
| 645 virtual void reportFindInPageMatchCount(int request_id, | 646 virtual void reportFindInPageMatchCount(int request_id, |
| 646 int count, | 647 int count, |
| 647 bool final_update); | 648 bool final_update); |
| 648 virtual void reportFindInPageSelection(int request_id, | 649 virtual void reportFindInPageSelection(int request_id, |
| 649 int active_match_ordinal, | 650 int active_match_ordinal, |
| (...skipping 948 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 |