| 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 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 570 void runScriptsAtDocumentElementAvailable( | 570 void runScriptsAtDocumentElementAvailable( |
| 571 blink::WebLocalFrame* frame) override; | 571 blink::WebLocalFrame* frame) override; |
| 572 void didReceiveTitle(blink::WebLocalFrame* frame, | 572 void didReceiveTitle(blink::WebLocalFrame* frame, |
| 573 const blink::WebString& title, | 573 const blink::WebString& title, |
| 574 blink::WebTextDirection direction) override; | 574 blink::WebTextDirection direction) override; |
| 575 void didChangeIcon(blink::WebLocalFrame* frame, | 575 void didChangeIcon(blink::WebLocalFrame* frame, |
| 576 blink::WebIconURL::Type icon_type) override; | 576 blink::WebIconURL::Type icon_type) override; |
| 577 void didFinishDocumentLoad(blink::WebLocalFrame* frame) override; | 577 void didFinishDocumentLoad(blink::WebLocalFrame* frame) override; |
| 578 void runScriptsAtDocumentReady(blink::WebLocalFrame* frame, | 578 void runScriptsAtDocumentReady(blink::WebLocalFrame* frame, |
| 579 bool document_is_empty) override; | 579 bool document_is_empty) override; |
| 580 void runScriptsAtDocumentIdle(blink::WebLocalFrame* frame) override; |
| 580 void didHandleOnloadEvents(blink::WebLocalFrame* frame) override; | 581 void didHandleOnloadEvents(blink::WebLocalFrame* frame) override; |
| 581 void didFailLoad(blink::WebLocalFrame* frame, | 582 void didFailLoad(blink::WebLocalFrame* frame, |
| 582 const blink::WebURLError& error, | 583 const blink::WebURLError& error, |
| 583 blink::WebHistoryCommitType commit_type) override; | 584 blink::WebHistoryCommitType commit_type) override; |
| 584 void didFinishLoad(blink::WebLocalFrame* frame) override; | 585 void didFinishLoad(blink::WebLocalFrame* frame) override; |
| 585 void didNavigateWithinPage(blink::WebLocalFrame* frame, | 586 void didNavigateWithinPage(blink::WebLocalFrame* frame, |
| 586 const blink::WebHistoryItem& item, | 587 const blink::WebHistoryItem& item, |
| 587 blink::WebHistoryCommitType commit_type, | 588 blink::WebHistoryCommitType commit_type, |
| 588 bool content_initiated) override; | 589 bool content_initiated) override; |
| 589 void didUpdateCurrentHistoryItem() override; | 590 void didUpdateCurrentHistoryItem() override; |
| (...skipping 835 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1425 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_; | 1426 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_; |
| 1426 | 1427 |
| 1427 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1428 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1428 | 1429 |
| 1429 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1430 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1430 }; | 1431 }; |
| 1431 | 1432 |
| 1432 } // namespace content | 1433 } // namespace content |
| 1433 | 1434 |
| 1434 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1435 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |