| 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 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 489 void didCreateNewDocument(blink::WebLocalFrame* frame) override; | 489 void didCreateNewDocument(blink::WebLocalFrame* frame) override; |
| 490 void didClearWindowObject(blink::WebLocalFrame* frame) override; | 490 void didClearWindowObject(blink::WebLocalFrame* frame) override; |
| 491 void didCreateDocumentElement(blink::WebLocalFrame* frame) override; | 491 void didCreateDocumentElement(blink::WebLocalFrame* frame) override; |
| 492 void runScriptsAtDocumentElementAvailable( | 492 void runScriptsAtDocumentElementAvailable( |
| 493 blink::WebLocalFrame* frame) override; | 493 blink::WebLocalFrame* frame) override; |
| 494 void didReceiveTitle(blink::WebLocalFrame* frame, | 494 void didReceiveTitle(blink::WebLocalFrame* frame, |
| 495 const blink::WebString& title, | 495 const blink::WebString& title, |
| 496 blink::WebTextDirection direction) override; | 496 blink::WebTextDirection direction) override; |
| 497 void didChangeIcon(blink::WebLocalFrame* frame, | 497 void didChangeIcon(blink::WebLocalFrame* frame, |
| 498 blink::WebIconURL::Type icon_type) override; | 498 blink::WebIconURL::Type icon_type) override; |
| 499 void didFinishDocumentLoad(blink::WebLocalFrame* frame, | 499 void didFinishDocumentLoad(blink::WebLocalFrame* frame) override; |
| 500 bool document_is_empty) override; | 500 void runScriptsAtDocumentReady(blink::WebLocalFrame* frame, |
| 501 void runScriptsAtDocumentReady(blink::WebLocalFrame* frame) override; | 501 bool document_is_empty) override; |
| 502 void didHandleOnloadEvents(blink::WebLocalFrame* frame) override; | 502 void didHandleOnloadEvents(blink::WebLocalFrame* frame) override; |
| 503 void didFailLoad(blink::WebLocalFrame* frame, | 503 void didFailLoad(blink::WebLocalFrame* frame, |
| 504 const blink::WebURLError& error, | 504 const blink::WebURLError& error, |
| 505 blink::WebHistoryCommitType commit_type) override; | 505 blink::WebHistoryCommitType commit_type) override; |
| 506 void didFinishLoad(blink::WebLocalFrame* frame) override; | 506 void didFinishLoad(blink::WebLocalFrame* frame) override; |
| 507 void didNavigateWithinPage(blink::WebLocalFrame* frame, | 507 void didNavigateWithinPage(blink::WebLocalFrame* frame, |
| 508 const blink::WebHistoryItem& item, | 508 const blink::WebHistoryItem& item, |
| 509 blink::WebHistoryCommitType commit_type) override; | 509 blink::WebHistoryCommitType commit_type) override; |
| 510 void didUpdateCurrentHistoryItem() override; | 510 void didUpdateCurrentHistoryItem() override; |
| 511 void didChangeThemeColor() override; | 511 void didChangeThemeColor() override; |
| (...skipping 692 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1204 #endif | 1204 #endif |
| 1205 | 1205 |
| 1206 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1206 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1207 | 1207 |
| 1208 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1208 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1209 }; | 1209 }; |
| 1210 | 1210 |
| 1211 } // namespace content | 1211 } // namespace content |
| 1212 | 1212 |
| 1213 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1213 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |