| 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 588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 599 void didRunInsecureContent(const blink::WebSecurityOrigin& origin, | 599 void didRunInsecureContent(const blink::WebSecurityOrigin& origin, |
| 600 const blink::WebURL& target) override; | 600 const blink::WebURL& target) override; |
| 601 void didDisplayContentWithCertificateErrors( | 601 void didDisplayContentWithCertificateErrors( |
| 602 const blink::WebURL& url) override; | 602 const blink::WebURL& url) override; |
| 603 void didRunContentWithCertificateErrors(const blink::WebURL& url) override; | 603 void didRunContentWithCertificateErrors(const blink::WebURL& url) override; |
| 604 void didChangePerformanceTiming() override; | 604 void didChangePerformanceTiming() override; |
| 605 void didObserveLoadingBehavior( | 605 void didObserveLoadingBehavior( |
| 606 blink::WebLoadingBehaviorFlag behavior) override; | 606 blink::WebLoadingBehaviorFlag behavior) override; |
| 607 void didCreateScriptContext(blink::WebLocalFrame* frame, | 607 void didCreateScriptContext(blink::WebLocalFrame* frame, |
| 608 v8::Local<v8::Context> context, | 608 v8::Local<v8::Context> context, |
| 609 int extension_group, | |
| 610 int world_id) override; | 609 int world_id) override; |
| 611 void willReleaseScriptContext(blink::WebLocalFrame* frame, | 610 void willReleaseScriptContext(blink::WebLocalFrame* frame, |
| 612 v8::Local<v8::Context> context, | 611 v8::Local<v8::Context> context, |
| 613 int world_id) override; | 612 int world_id) override; |
| 614 void didChangeScrollOffset(blink::WebLocalFrame* frame) override; | 613 void didChangeScrollOffset(blink::WebLocalFrame* frame) override; |
| 615 void willInsertBody(blink::WebLocalFrame* frame) override; | 614 void willInsertBody(blink::WebLocalFrame* frame) override; |
| 616 void reportFindInPageMatchCount(int request_id, | 615 void reportFindInPageMatchCount(int request_id, |
| 617 int count, | 616 int count, |
| 618 bool final_update) override; | 617 bool final_update) override; |
| 619 void reportFindInPageSelection(int request_id, | 618 void reportFindInPageSelection(int request_id, |
| (...skipping 746 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1366 bool browser_side_navigation_pending_ = false; | 1365 bool browser_side_navigation_pending_ = false; |
| 1367 | 1366 |
| 1368 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1367 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1369 | 1368 |
| 1370 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1369 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1371 }; | 1370 }; |
| 1372 | 1371 |
| 1373 } // namespace content | 1372 } // namespace content |
| 1374 | 1373 |
| 1375 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1374 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |