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 579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
590 blink::WebHistoryCommitType commit_type) override; | 590 blink::WebHistoryCommitType commit_type) override; |
591 void didFinishLoad(blink::WebLocalFrame* frame) override; | 591 void didFinishLoad(blink::WebLocalFrame* frame) override; |
592 void didNavigateWithinPage(blink::WebLocalFrame* frame, | 592 void didNavigateWithinPage(blink::WebLocalFrame* frame, |
593 const blink::WebHistoryItem& item, | 593 const blink::WebHistoryItem& item, |
594 blink::WebHistoryCommitType commit_type, | 594 blink::WebHistoryCommitType commit_type, |
595 bool content_initiated) override; | 595 bool content_initiated) override; |
596 void didUpdateCurrentHistoryItem() override; | 596 void didUpdateCurrentHistoryItem() override; |
597 void didChangeThemeColor() override; | 597 void didChangeThemeColor() override; |
598 void dispatchLoad() override; | 598 void dispatchLoad() override; |
599 blink::WebEffectiveConnectionType getEffectiveConnectionType() override; | 599 blink::WebEffectiveConnectionType getEffectiveConnectionType() override; |
| 600 void abortClientNavigation() override; |
600 void didChangeSelection(bool is_empty_selection) override; | 601 void didChangeSelection(bool is_empty_selection) override; |
601 bool handleCurrentKeyboardEvent() override; | 602 bool handleCurrentKeyboardEvent() override; |
602 blink::WebColorChooser* createColorChooser( | 603 blink::WebColorChooser* createColorChooser( |
603 blink::WebColorChooserClient* client, | 604 blink::WebColorChooserClient* client, |
604 const blink::WebColor& initial_color, | 605 const blink::WebColor& initial_color, |
605 const blink::WebVector<blink::WebColorSuggestion>& suggestions) override; | 606 const blink::WebVector<blink::WebColorSuggestion>& suggestions) override; |
606 void runModalAlertDialog(const blink::WebString& message) override; | 607 void runModalAlertDialog(const blink::WebString& message) override; |
607 bool runModalConfirmDialog(const blink::WebString& message) override; | 608 bool runModalConfirmDialog(const blink::WebString& message) override; |
608 bool runModalPromptDialog(const blink::WebString& message, | 609 bool runModalPromptDialog(const blink::WebString& message, |
609 const blink::WebString& default_value, | 610 const blink::WebString& default_value, |
(...skipping 814 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1424 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_; | 1425 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_; |
1425 | 1426 |
1426 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1427 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1427 | 1428 |
1428 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1429 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1429 }; | 1430 }; |
1430 | 1431 |
1431 } // namespace content | 1432 } // namespace content |
1432 | 1433 |
1433 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1434 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |