| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_H_ |
| 6 #define CONTENT_RENDERER_RENDER_VIEW_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <deque> | 9 #include <deque> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 const WebKit::WebURLResponse&); | 544 const WebKit::WebURLResponse&); |
| 545 virtual void didDisplayInsecureContent(WebKit::WebFrame* frame); | 545 virtual void didDisplayInsecureContent(WebKit::WebFrame* frame); |
| 546 virtual void didRunInsecureContent( | 546 virtual void didRunInsecureContent( |
| 547 WebKit::WebFrame* frame, | 547 WebKit::WebFrame* frame, |
| 548 const WebKit::WebSecurityOrigin& origin, | 548 const WebKit::WebSecurityOrigin& origin, |
| 549 const WebKit::WebURL& target); | 549 const WebKit::WebURL& target); |
| 550 virtual void didExhaustMemoryAvailableForScript(WebKit::WebFrame* frame); | 550 virtual void didExhaustMemoryAvailableForScript(WebKit::WebFrame* frame); |
| 551 virtual void didCreateScriptContext(WebKit::WebFrame* frame); | 551 virtual void didCreateScriptContext(WebKit::WebFrame* frame); |
| 552 virtual void didDestroyScriptContext(WebKit::WebFrame* frame); | 552 virtual void didDestroyScriptContext(WebKit::WebFrame* frame); |
| 553 virtual void didCreateIsolatedScriptContext(WebKit::WebFrame* frame); | 553 virtual void didCreateIsolatedScriptContext(WebKit::WebFrame* frame); |
| 554 virtual void logCrossFramePropertyAccess( | |
| 555 WebKit::WebFrame* frame, | |
| 556 WebKit::WebFrame* target, | |
| 557 bool cross_origin, | |
| 558 const WebKit::WebString& property_name, | |
| 559 unsigned long long event_id); | |
| 560 virtual void didUpdateLayout(WebKit::WebFrame* frame); | 554 virtual void didUpdateLayout(WebKit::WebFrame* frame); |
| 561 virtual void didChangeScrollOffset(WebKit::WebFrame* frame); | 555 virtual void didChangeScrollOffset(WebKit::WebFrame* frame); |
| 562 virtual void numberOfWheelEventHandlersChanged(unsigned num_handlers); | 556 virtual void numberOfWheelEventHandlersChanged(unsigned num_handlers); |
| 563 virtual void didChangeContentsSize(WebKit::WebFrame* frame, | 557 virtual void didChangeContentsSize(WebKit::WebFrame* frame, |
| 564 const WebKit::WebSize& size); | 558 const WebKit::WebSize& size); |
| 565 virtual void reportFindInPageMatchCount(int request_id, | 559 virtual void reportFindInPageMatchCount(int request_id, |
| 566 int count, | 560 int count, |
| 567 bool final_update); | 561 bool final_update); |
| 568 virtual void reportFindInPageSelection(int request_id, | 562 virtual void reportFindInPageSelection(int request_id, |
| 569 int active_match_ordinal, | 563 int active_match_ordinal, |
| (...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1226 // bunch of stuff, you should probably create a helper class and put your | 1220 // bunch of stuff, you should probably create a helper class and put your |
| 1227 // data and methods on that to avoid bloating RenderView more. You can use | 1221 // data and methods on that to avoid bloating RenderView more. You can use |
| 1228 // the Observer interface to filter IPC messages and receive frame change | 1222 // the Observer interface to filter IPC messages and receive frame change |
| 1229 // notifications. | 1223 // notifications. |
| 1230 // --------------------------------------------------------------------------- | 1224 // --------------------------------------------------------------------------- |
| 1231 | 1225 |
| 1232 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1226 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 1233 }; | 1227 }; |
| 1234 | 1228 |
| 1235 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ | 1229 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |