OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_FRAME_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
486 const blink::WebSecurityOrigin& origin, | 486 const blink::WebSecurityOrigin& origin, |
487 const blink::WebURL& target); | 487 const blink::WebURL& target); |
488 virtual void didAbortLoading(blink::WebLocalFrame* frame); | 488 virtual void didAbortLoading(blink::WebLocalFrame* frame); |
489 virtual void didCreateScriptContext(blink::WebLocalFrame* frame, | 489 virtual void didCreateScriptContext(blink::WebLocalFrame* frame, |
490 v8::Local<v8::Context> context, | 490 v8::Local<v8::Context> context, |
491 int extension_group, | 491 int extension_group, |
492 int world_id); | 492 int world_id); |
493 virtual void willReleaseScriptContext(blink::WebLocalFrame* frame, | 493 virtual void willReleaseScriptContext(blink::WebLocalFrame* frame, |
494 v8::Local<v8::Context> context, | 494 v8::Local<v8::Context> context, |
495 int world_id); | 495 int world_id); |
496 virtual void didFirstVisuallyNonEmptyLayout(blink::WebLocalFrame* frame); | |
497 virtual void didChangeScrollOffset(blink::WebLocalFrame* frame); | 496 virtual void didChangeScrollOffset(blink::WebLocalFrame* frame); |
498 virtual void willInsertBody(blink::WebLocalFrame* frame); | 497 virtual void willInsertBody(blink::WebLocalFrame* frame); |
499 virtual void reportFindInPageMatchCount(int request_id, | 498 virtual void reportFindInPageMatchCount(int request_id, |
500 int count, | 499 int count, |
501 bool final_update); | 500 bool final_update); |
502 virtual void reportFindInPageSelection(int request_id, | 501 virtual void reportFindInPageSelection(int request_id, |
503 int active_match_ordinal, | 502 int active_match_ordinal, |
504 const blink::WebRect& sel); | 503 const blink::WebRect& sel); |
505 virtual void requestStorageQuota(blink::WebLocalFrame* frame, | 504 virtual void requestStorageQuota(blink::WebLocalFrame* frame, |
506 blink::WebStorageQuotaType type, | 505 blink::WebStorageQuotaType type, |
(...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1036 #endif | 1035 #endif |
1037 | 1036 |
1038 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1037 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1039 | 1038 |
1040 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1039 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1041 }; | 1040 }; |
1042 | 1041 |
1043 } // namespace content | 1042 } // namespace content |
1044 | 1043 |
1045 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1044 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |