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