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 <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
513 unsigned identifier, | 513 unsigned identifier, |
514 const blink::WebURLResponse& response) override; | 514 const blink::WebURLResponse& response) override; |
515 void didLoadResourceFromMemoryCache( | 515 void didLoadResourceFromMemoryCache( |
516 blink::WebLocalFrame* frame, | 516 blink::WebLocalFrame* frame, |
517 const blink::WebURLRequest& request, | 517 const blink::WebURLRequest& request, |
518 const blink::WebURLResponse& response) override; | 518 const blink::WebURLResponse& response) override; |
519 void didDisplayInsecureContent() override; | 519 void didDisplayInsecureContent() override; |
520 void didRunInsecureContent(const blink::WebSecurityOrigin& origin, | 520 void didRunInsecureContent(const blink::WebSecurityOrigin& origin, |
521 const blink::WebURL& target) override; | 521 const blink::WebURL& target) override; |
522 void didChangePerformanceTiming() override; | 522 void didChangePerformanceTiming() override; |
523 void didAbortLoading(blink::WebLocalFrame* frame) override; | |
524 void didCreateScriptContext(blink::WebLocalFrame* frame, | 523 void didCreateScriptContext(blink::WebLocalFrame* frame, |
525 v8::Local<v8::Context> context, | 524 v8::Local<v8::Context> context, |
526 int extension_group, | 525 int extension_group, |
527 int world_id) override; | 526 int world_id) override; |
528 void willReleaseScriptContext(blink::WebLocalFrame* frame, | 527 void willReleaseScriptContext(blink::WebLocalFrame* frame, |
529 v8::Local<v8::Context> context, | 528 v8::Local<v8::Context> context, |
530 int world_id) override; | 529 int world_id) override; |
531 void didChangeScrollOffset(blink::WebLocalFrame* frame) override; | 530 void didChangeScrollOffset(blink::WebLocalFrame* frame) override; |
532 void willInsertBody(blink::WebLocalFrame* frame) override; | 531 void willInsertBody(blink::WebLocalFrame* frame) override; |
533 void reportFindInPageMatchCount(int request_id, | 532 void reportFindInPageMatchCount(int request_id, |
(...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1102 #endif | 1101 #endif |
1103 | 1102 |
1104 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1103 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1105 | 1104 |
1106 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1105 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1107 }; | 1106 }; |
1108 | 1107 |
1109 } // namespace content | 1108 } // namespace content |
1110 | 1109 |
1111 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1110 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |