| 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 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 568 const blink::WebHistoryItem& item, | 568 const blink::WebHistoryItem& item, |
| 569 blink::WebHistoryCommitType commit_type) override; | 569 blink::WebHistoryCommitType commit_type) override; |
| 570 void didCreateNewDocument(blink::WebLocalFrame* frame) override; | 570 void didCreateNewDocument(blink::WebLocalFrame* frame) override; |
| 571 void didClearWindowObject(blink::WebLocalFrame* frame) override; | 571 void didClearWindowObject(blink::WebLocalFrame* frame) override; |
| 572 void didCreateDocumentElement(blink::WebLocalFrame* frame) override; | 572 void didCreateDocumentElement(blink::WebLocalFrame* frame) override; |
| 573 void runScriptsAtDocumentElementAvailable( | 573 void runScriptsAtDocumentElementAvailable( |
| 574 blink::WebLocalFrame* frame) override; | 574 blink::WebLocalFrame* frame) override; |
| 575 void didReceiveTitle(blink::WebLocalFrame* frame, | 575 void didReceiveTitle(blink::WebLocalFrame* frame, |
| 576 const blink::WebString& title, | 576 const blink::WebString& title, |
| 577 blink::WebTextDirection direction) override; | 577 blink::WebTextDirection direction) override; |
| 578 void didChangeIcon(blink::WebLocalFrame* frame, | 578 void didChangeIcon(blink::WebIconURL::Type icon_type) override; |
| 579 blink::WebIconURL::Type icon_type) override; | |
| 580 void didFinishDocumentLoad(blink::WebLocalFrame* frame) override; | 579 void didFinishDocumentLoad(blink::WebLocalFrame* frame) override; |
| 581 void runScriptsAtDocumentReady(blink::WebLocalFrame* frame, | 580 void runScriptsAtDocumentReady(blink::WebLocalFrame* frame, |
| 582 bool document_is_empty) override; | 581 bool document_is_empty) override; |
| 583 void runScriptsAtDocumentIdle(blink::WebLocalFrame* frame) override; | 582 void runScriptsAtDocumentIdle(blink::WebLocalFrame* frame) override; |
| 584 void didHandleOnloadEvents(blink::WebLocalFrame* frame) override; | 583 void didHandleOnloadEvents(blink::WebLocalFrame* frame) override; |
| 585 void didFailLoad(blink::WebLocalFrame* frame, | 584 void didFailLoad(blink::WebLocalFrame* frame, |
| 586 const blink::WebURLError& error, | 585 const blink::WebURLError& error, |
| 587 blink::WebHistoryCommitType commit_type) override; | 586 blink::WebHistoryCommitType commit_type) override; |
| 588 void didFinishLoad(blink::WebLocalFrame* frame) override; | 587 void didFinishLoad(blink::WebLocalFrame* frame) override; |
| 589 void didNavigateWithinPage(blink::WebLocalFrame* frame, | 588 void didNavigateWithinPage(blink::WebLocalFrame* frame, |
| (...skipping 833 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 |