| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 607 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 618 const blink::WebURL& target) override; | 618 const blink::WebURL& target) override; |
| 619 void DidDisplayContentWithCertificateErrors( | 619 void DidDisplayContentWithCertificateErrors( |
| 620 const blink::WebURL& url) override; | 620 const blink::WebURL& url) override; |
| 621 void DidRunContentWithCertificateErrors(const blink::WebURL& url) override; | 621 void DidRunContentWithCertificateErrors(const blink::WebURL& url) override; |
| 622 void DidChangePerformanceTiming() override; | 622 void DidChangePerformanceTiming() override; |
| 623 void DidObserveLoadingBehavior( | 623 void DidObserveLoadingBehavior( |
| 624 blink::WebLoadingBehaviorFlag behavior) override; | 624 blink::WebLoadingBehaviorFlag behavior) override; |
| 625 void DidCreateScriptContext(blink::WebLocalFrame* frame, | 625 void DidCreateScriptContext(blink::WebLocalFrame* frame, |
| 626 v8::Local<v8::Context> context, | 626 v8::Local<v8::Context> context, |
| 627 int world_id) override; | 627 int world_id) override; |
| 628 void WillReleaseScriptContext(blink::WebLocalFrame* frame, | 628 void WillReleaseScriptContext(v8::Local<v8::Context> context, |
| 629 v8::Local<v8::Context> context, | |
| 630 int world_id) override; | 629 int world_id) override; |
| 631 void DidChangeScrollOffset() override; | 630 void DidChangeScrollOffset() override; |
| 632 void WillInsertBody(blink::WebLocalFrame* frame) override; | 631 void WillInsertBody(blink::WebLocalFrame* frame) override; |
| 633 void ReportFindInPageMatchCount(int request_id, | 632 void ReportFindInPageMatchCount(int request_id, |
| 634 int count, | 633 int count, |
| 635 bool final_update) override; | 634 bool final_update) override; |
| 636 void ReportFindInPageSelection(int request_id, | 635 void ReportFindInPageSelection(int request_id, |
| 637 int active_match_ordinal, | 636 int active_match_ordinal, |
| 638 const blink::WebRect& sel) override; | 637 const blink::WebRect& sel) override; |
| 639 void RequestStorageQuota(blink::WebStorageQuotaType type, | 638 void RequestStorageQuota(blink::WebStorageQuotaType type, |
| (...skipping 783 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1423 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_; | 1422 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_; |
| 1424 | 1423 |
| 1425 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1424 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1426 | 1425 |
| 1427 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1426 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1428 }; | 1427 }; |
| 1429 | 1428 |
| 1430 } // namespace content | 1429 } // namespace content |
| 1431 | 1430 |
| 1432 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1431 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |