| 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 501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 512 void didReceiveResponse(blink::WebLocalFrame* frame, | 512 void didReceiveResponse(blink::WebLocalFrame* frame, |
| 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 didDisplayContentWithCertificateErrors( |
| 523 const blink::WebURL& url, |
| 524 const blink::WebCString& security_info, |
| 525 const blink::WebURL& main_resource_url, |
| 526 const blink::WebCString& main_resource_security_info) override; |
| 527 void didRunContentWithCertificateErrors( |
| 528 const blink::WebURL& url, |
| 529 const blink::WebCString& security_info, |
| 530 const blink::WebURL& main_resource_url, |
| 531 const blink::WebCString& main_resource_security_info) override; |
| 522 void didChangePerformanceTiming() override; | 532 void didChangePerformanceTiming() override; |
| 523 void didAbortLoading(blink::WebLocalFrame* frame) override; | 533 void didAbortLoading(blink::WebLocalFrame* frame) override; |
| 524 void didCreateScriptContext(blink::WebLocalFrame* frame, | 534 void didCreateScriptContext(blink::WebLocalFrame* frame, |
| 525 v8::Local<v8::Context> context, | 535 v8::Local<v8::Context> context, |
| 526 int extension_group, | 536 int extension_group, |
| 527 int world_id) override; | 537 int world_id) override; |
| 528 void willReleaseScriptContext(blink::WebLocalFrame* frame, | 538 void willReleaseScriptContext(blink::WebLocalFrame* frame, |
| 529 v8::Local<v8::Context> context, | 539 v8::Local<v8::Context> context, |
| 530 int world_id) override; | 540 int world_id) override; |
| 531 void didChangeScrollOffset(blink::WebLocalFrame* frame) override; | 541 void didChangeScrollOffset(blink::WebLocalFrame* frame) override; |
| (...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1102 #endif | 1112 #endif |
| 1103 | 1113 |
| 1104 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1114 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1105 | 1115 |
| 1106 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1116 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1107 }; | 1117 }; |
| 1108 | 1118 |
| 1109 } // namespace content | 1119 } // namespace content |
| 1110 | 1120 |
| 1111 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1121 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |