| 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 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 514 void didFinishDocumentLoad(blink::WebLocalFrame* frame) override; | 514 void didFinishDocumentLoad(blink::WebLocalFrame* frame) override; |
| 515 void runScriptsAtDocumentReady(blink::WebLocalFrame* frame, | 515 void runScriptsAtDocumentReady(blink::WebLocalFrame* frame, |
| 516 bool document_is_empty) override; | 516 bool document_is_empty) override; |
| 517 void didHandleOnloadEvents(blink::WebLocalFrame* frame) override; | 517 void didHandleOnloadEvents(blink::WebLocalFrame* frame) override; |
| 518 void didFailLoad(blink::WebLocalFrame* frame, | 518 void didFailLoad(blink::WebLocalFrame* frame, |
| 519 const blink::WebURLError& error, | 519 const blink::WebURLError& error, |
| 520 blink::WebHistoryCommitType commit_type) override; | 520 blink::WebHistoryCommitType commit_type) override; |
| 521 void didFinishLoad(blink::WebLocalFrame* frame) override; | 521 void didFinishLoad(blink::WebLocalFrame* frame) override; |
| 522 void didNavigateWithinPage(blink::WebLocalFrame* frame, | 522 void didNavigateWithinPage(blink::WebLocalFrame* frame, |
| 523 const blink::WebHistoryItem& item, | 523 const blink::WebHistoryItem& item, |
| 524 blink::WebHistoryCommitType commit_type) override; | 524 blink::WebHistoryCommitType commit_type, |
| 525 bool content_initiated) override; |
| 525 void didUpdateCurrentHistoryItem() override; | 526 void didUpdateCurrentHistoryItem() override; |
| 526 void didChangeThemeColor() override; | 527 void didChangeThemeColor() override; |
| 527 void dispatchLoad() override; | 528 void dispatchLoad() override; |
| 528 blink::WebEffectiveConnectionType getEffectiveConnectionType() override; | 529 blink::WebEffectiveConnectionType getEffectiveConnectionType() override; |
| 529 void requestNotificationPermission( | 530 void requestNotificationPermission( |
| 530 const blink::WebSecurityOrigin& origin, | 531 const blink::WebSecurityOrigin& origin, |
| 531 blink::WebNotificationPermissionCallback* callback) override; | 532 blink::WebNotificationPermissionCallback* callback) override; |
| 532 void didChangeSelection(bool is_empty_selection) override; | 533 void didChangeSelection(bool is_empty_selection) override; |
| 533 blink::WebColorChooser* createColorChooser( | 534 blink::WebColorChooser* createColorChooser( |
| 534 blink::WebColorChooserClient* client, | 535 blink::WebColorChooserClient* client, |
| (...skipping 720 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1255 #endif | 1256 #endif |
| 1256 | 1257 |
| 1257 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1258 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1258 | 1259 |
| 1259 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1260 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1260 }; | 1261 }; |
| 1261 | 1262 |
| 1262 } // namespace content | 1263 } // namespace content |
| 1263 | 1264 |
| 1264 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1265 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |