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 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
515 void didReceiveResponse(blink::WebLocalFrame* frame, | 515 void didReceiveResponse(blink::WebLocalFrame* frame, |
516 unsigned identifier, | 516 unsigned identifier, |
517 const blink::WebURLResponse& response) override; | 517 const blink::WebURLResponse& response) override; |
518 void didLoadResourceFromMemoryCache( | 518 void didLoadResourceFromMemoryCache( |
519 blink::WebLocalFrame* frame, | 519 blink::WebLocalFrame* frame, |
520 const blink::WebURLRequest& request, | 520 const blink::WebURLRequest& request, |
521 const blink::WebURLResponse& response) override; | 521 const blink::WebURLResponse& response) override; |
522 void didDisplayInsecureContent() override; | 522 void didDisplayInsecureContent() override; |
523 void didRunInsecureContent(const blink::WebSecurityOrigin& origin, | 523 void didRunInsecureContent(const blink::WebSecurityOrigin& origin, |
524 const blink::WebURL& target) override; | 524 const blink::WebURL& target) override; |
| 525 void didDisplayContentWithCertificateErrors( |
| 526 const blink::WebURL& url, |
| 527 const blink::WebCString& security_info, |
| 528 const blink::WebURL& main_resource_url, |
| 529 const blink::WebCString& main_resource_security_info) override; |
| 530 void didRunContentWithCertificateErrors( |
| 531 const blink::WebURL& url, |
| 532 const blink::WebCString& security_info, |
| 533 const blink::WebURL& main_resource_url, |
| 534 const blink::WebCString& main_resource_security_info) override; |
525 void didChangePerformanceTiming() override; | 535 void didChangePerformanceTiming() override; |
526 void didCreateScriptContext(blink::WebLocalFrame* frame, | 536 void didCreateScriptContext(blink::WebLocalFrame* frame, |
527 v8::Local<v8::Context> context, | 537 v8::Local<v8::Context> context, |
528 int extension_group, | 538 int extension_group, |
529 int world_id) override; | 539 int world_id) override; |
530 void willReleaseScriptContext(blink::WebLocalFrame* frame, | 540 void willReleaseScriptContext(blink::WebLocalFrame* frame, |
531 v8::Local<v8::Context> context, | 541 v8::Local<v8::Context> context, |
532 int world_id) override; | 542 int world_id) override; |
533 void didChangeScrollOffset(blink::WebLocalFrame* frame) override; | 543 void didChangeScrollOffset(blink::WebLocalFrame* frame) override; |
534 void willInsertBody(blink::WebLocalFrame* frame) override; | 544 void willInsertBody(blink::WebLocalFrame* frame) override; |
(...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1119 #endif | 1129 #endif |
1120 | 1130 |
1121 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1131 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1122 | 1132 |
1123 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1133 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1124 }; | 1134 }; |
1125 | 1135 |
1126 } // namespace content | 1136 } // namespace content |
1127 | 1137 |
1128 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1138 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |