| 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 599 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 610 void didChangePerformanceTiming() override; | 610 void didChangePerformanceTiming() override; |
| 611 void didObserveLoadingBehavior( | 611 void didObserveLoadingBehavior( |
| 612 blink::WebLoadingBehaviorFlag behavior) override; | 612 blink::WebLoadingBehaviorFlag behavior) override; |
| 613 void didCreateScriptContext(blink::WebLocalFrame* frame, | 613 void didCreateScriptContext(blink::WebLocalFrame* frame, |
| 614 v8::Local<v8::Context> context, | 614 v8::Local<v8::Context> context, |
| 615 int world_id) override; | 615 int world_id) override; |
| 616 void willReleaseScriptContext(blink::WebLocalFrame* frame, | 616 void willReleaseScriptContext(blink::WebLocalFrame* frame, |
| 617 v8::Local<v8::Context> context, | 617 v8::Local<v8::Context> context, |
| 618 int world_id) override; | 618 int world_id) override; |
| 619 void didChangeScrollOffset(blink::WebLocalFrame* frame) override; | 619 void didChangeScrollOffset(blink::WebLocalFrame* frame) override; |
| 620 void didRestorePageScaleFactorOnLoad(float page_scale) override; |
| 620 void willInsertBody(blink::WebLocalFrame* frame) override; | 621 void willInsertBody(blink::WebLocalFrame* frame) override; |
| 621 void reportFindInPageMatchCount(int request_id, | 622 void reportFindInPageMatchCount(int request_id, |
| 622 int count, | 623 int count, |
| 623 bool final_update) override; | 624 bool final_update) override; |
| 624 void reportFindInPageSelection(int request_id, | 625 void reportFindInPageSelection(int request_id, |
| 625 int active_match_ordinal, | 626 int active_match_ordinal, |
| 626 const blink::WebRect& sel) override; | 627 const blink::WebRect& sel) override; |
| 627 void requestStorageQuota(blink::WebStorageQuotaType type, | 628 void requestStorageQuota(blink::WebStorageQuotaType type, |
| 628 unsigned long long requested_size, | 629 unsigned long long requested_size, |
| 629 blink::WebStorageQuotaCallbacks callbacks) override; | 630 blink::WebStorageQuotaCallbacks callbacks) override; |
| (...skipping 752 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1382 bool browser_side_navigation_pending_ = false; | 1383 bool browser_side_navigation_pending_ = false; |
| 1383 | 1384 |
| 1384 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1385 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1385 | 1386 |
| 1386 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1387 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1387 }; | 1388 }; |
| 1388 | 1389 |
| 1389 } // namespace content | 1390 } // namespace content |
| 1390 | 1391 |
| 1391 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1392 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |