| 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 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 524 const blink::WebURL& url, | 524 const blink::WebURL& url, |
| 525 const blink::WebCString& security_info, | 525 const blink::WebCString& security_info, |
| 526 const blink::WebURL& main_resource_url, | 526 const blink::WebURL& main_resource_url, |
| 527 const blink::WebCString& main_resource_security_info) override; | 527 const blink::WebCString& main_resource_security_info) override; |
| 528 void didRunContentWithCertificateErrors( | 528 void didRunContentWithCertificateErrors( |
| 529 const blink::WebURL& url, | 529 const blink::WebURL& url, |
| 530 const blink::WebCString& security_info, | 530 const blink::WebCString& security_info, |
| 531 const blink::WebURL& main_resource_url, | 531 const blink::WebURL& main_resource_url, |
| 532 const blink::WebCString& main_resource_security_info) override; | 532 const blink::WebCString& main_resource_security_info) override; |
| 533 void didChangePerformanceTiming() override; | 533 void didChangePerformanceTiming() override; |
| 534 void didAbortLoading(blink::WebLocalFrame* frame) override; | |
| 535 void didCreateScriptContext(blink::WebLocalFrame* frame, | 534 void didCreateScriptContext(blink::WebLocalFrame* frame, |
| 536 v8::Local<v8::Context> context, | 535 v8::Local<v8::Context> context, |
| 537 int extension_group, | 536 int extension_group, |
| 538 int world_id) override; | 537 int world_id) override; |
| 539 void willReleaseScriptContext(blink::WebLocalFrame* frame, | 538 void willReleaseScriptContext(blink::WebLocalFrame* frame, |
| 540 v8::Local<v8::Context> context, | 539 v8::Local<v8::Context> context, |
| 541 int world_id) override; | 540 int world_id) override; |
| 542 void didChangeScrollOffset(blink::WebLocalFrame* frame) override; | 541 void didChangeScrollOffset(blink::WebLocalFrame* frame) override; |
| 543 void willInsertBody(blink::WebLocalFrame* frame) override; | 542 void willInsertBody(blink::WebLocalFrame* frame) override; |
| 544 void reportFindInPageMatchCount(int request_id, | 543 void reportFindInPageMatchCount(int request_id, |
| (...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1122 #endif | 1121 #endif |
| 1123 | 1122 |
| 1124 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1123 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1125 | 1124 |
| 1126 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1125 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1127 }; | 1126 }; |
| 1128 | 1127 |
| 1129 } // namespace content | 1128 } // namespace content |
| 1130 | 1129 |
| 1131 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1130 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |