| 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 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 538 void didFinishLoad(blink::WebLocalFrame* frame) override; | 538 void didFinishLoad(blink::WebLocalFrame* frame) override; |
| 539 void didNavigateWithinPage(blink::WebLocalFrame* frame, | 539 void didNavigateWithinPage(blink::WebLocalFrame* frame, |
| 540 const blink::WebHistoryItem& item, | 540 const blink::WebHistoryItem& item, |
| 541 blink::WebHistoryCommitType commit_type, | 541 blink::WebHistoryCommitType commit_type, |
| 542 bool content_initiated) override; | 542 bool content_initiated) override; |
| 543 void didUpdateCurrentHistoryItem() override; | 543 void didUpdateCurrentHistoryItem() override; |
| 544 void didChangeThemeColor() override; | 544 void didChangeThemeColor() override; |
| 545 void dispatchLoad() override; | 545 void dispatchLoad() override; |
| 546 blink::WebEffectiveConnectionType getEffectiveConnectionType() override; | 546 blink::WebEffectiveConnectionType getEffectiveConnectionType() override; |
| 547 void didChangeSelection(bool is_empty_selection) override; | 547 void didChangeSelection(bool is_empty_selection) override; |
| 548 bool handleCurrentKeyboardEvent() override; |
| 548 blink::WebColorChooser* createColorChooser( | 549 blink::WebColorChooser* createColorChooser( |
| 549 blink::WebColorChooserClient* client, | 550 blink::WebColorChooserClient* client, |
| 550 const blink::WebColor& initial_color, | 551 const blink::WebColor& initial_color, |
| 551 const blink::WebVector<blink::WebColorSuggestion>& suggestions) override; | 552 const blink::WebVector<blink::WebColorSuggestion>& suggestions) override; |
| 552 void runModalAlertDialog(const blink::WebString& message) override; | 553 void runModalAlertDialog(const blink::WebString& message) override; |
| 553 bool runModalConfirmDialog(const blink::WebString& message) override; | 554 bool runModalConfirmDialog(const blink::WebString& message) override; |
| 554 bool runModalPromptDialog(const blink::WebString& message, | 555 bool runModalPromptDialog(const blink::WebString& message, |
| 555 const blink::WebString& default_value, | 556 const blink::WebString& default_value, |
| 556 blink::WebString* actual_value) override; | 557 blink::WebString* actual_value) override; |
| 557 bool runModalBeforeUnloadDialog(bool is_reload) override; | 558 bool runModalBeforeUnloadDialog(bool is_reload) override; |
| (...skipping 718 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1276 bool has_accessed_initial_document_; | 1277 bool has_accessed_initial_document_; |
| 1277 | 1278 |
| 1278 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1279 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1279 | 1280 |
| 1280 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1281 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1281 }; | 1282 }; |
| 1282 | 1283 |
| 1283 } // namespace content | 1284 } // namespace content |
| 1284 | 1285 |
| 1285 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1286 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |