| 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 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 542 blink::WebHistoryCommitType commit_type, | 542 blink::WebHistoryCommitType commit_type, |
| 543 bool content_initiated) override; | 543 bool content_initiated) override; |
| 544 void didUpdateCurrentHistoryItem() override; | 544 void didUpdateCurrentHistoryItem() override; |
| 545 void didChangeThemeColor() override; | 545 void didChangeThemeColor() override; |
| 546 void dispatchLoad() override; | 546 void dispatchLoad() override; |
| 547 blink::WebEffectiveConnectionType getEffectiveConnectionType() override; | 547 blink::WebEffectiveConnectionType getEffectiveConnectionType() override; |
| 548 void requestNotificationPermission( | 548 void requestNotificationPermission( |
| 549 const blink::WebSecurityOrigin& origin, | 549 const blink::WebSecurityOrigin& origin, |
| 550 blink::WebNotificationPermissionCallback* callback) override; | 550 blink::WebNotificationPermissionCallback* callback) override; |
| 551 void didChangeSelection(bool is_empty_selection) override; | 551 void didChangeSelection(bool is_empty_selection) override; |
| 552 bool handleCurrentKeyboardEvent() override; |
| 552 blink::WebColorChooser* createColorChooser( | 553 blink::WebColorChooser* createColorChooser( |
| 553 blink::WebColorChooserClient* client, | 554 blink::WebColorChooserClient* client, |
| 554 const blink::WebColor& initial_color, | 555 const blink::WebColor& initial_color, |
| 555 const blink::WebVector<blink::WebColorSuggestion>& suggestions) override; | 556 const blink::WebVector<blink::WebColorSuggestion>& suggestions) override; |
| 556 void runModalAlertDialog(const blink::WebString& message) override; | 557 void runModalAlertDialog(const blink::WebString& message) override; |
| 557 bool runModalConfirmDialog(const blink::WebString& message) override; | 558 bool runModalConfirmDialog(const blink::WebString& message) override; |
| 558 bool runModalPromptDialog(const blink::WebString& message, | 559 bool runModalPromptDialog(const blink::WebString& message, |
| 559 const blink::WebString& default_value, | 560 const blink::WebString& default_value, |
| 560 blink::WebString* actual_value) override; | 561 blink::WebString* actual_value) override; |
| 561 bool runModalBeforeUnloadDialog(bool is_reload) override; | 562 bool runModalBeforeUnloadDialog(bool is_reload) override; |
| (...skipping 719 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1281 mojom::FrameHostPtr frame_host_; | 1282 mojom::FrameHostPtr frame_host_; |
| 1282 | 1283 |
| 1283 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1284 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1284 | 1285 |
| 1285 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1286 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1286 }; | 1287 }; |
| 1287 | 1288 |
| 1288 } // namespace content | 1289 } // namespace content |
| 1289 | 1290 |
| 1290 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1291 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |