| 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 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 616 void postAccessibilityEvent(const blink::WebAXObject& obj, | 616 void postAccessibilityEvent(const blink::WebAXObject& obj, |
| 617 blink::WebAXEvent event) override; | 617 blink::WebAXEvent event) override; |
| 618 void handleAccessibilityFindInPageResult( | 618 void handleAccessibilityFindInPageResult( |
| 619 int identifier, | 619 int identifier, |
| 620 int match_index, | 620 int match_index, |
| 621 const blink::WebAXObject& start_object, | 621 const blink::WebAXObject& start_object, |
| 622 int start_offset, | 622 int start_offset, |
| 623 const blink::WebAXObject& end_object, | 623 const blink::WebAXObject& end_object, |
| 624 int end_offset) override; | 624 int end_offset) override; |
| 625 void didChangeManifest() override; | 625 void didChangeManifest() override; |
| 626 bool enterFullscreen() override; | 626 void enterFullscreen() override; |
| 627 bool exitFullscreen() override; | 627 void exitFullscreen() override; |
| 628 blink::WebPermissionClient* permissionClient() override; | 628 blink::WebPermissionClient* permissionClient() override; |
| 629 blink::WebAppBannerClient* appBannerClient() override; | 629 blink::WebAppBannerClient* appBannerClient() override; |
| 630 void registerProtocolHandler(const blink::WebString& scheme, | 630 void registerProtocolHandler(const blink::WebString& scheme, |
| 631 const blink::WebURL& url, | 631 const blink::WebURL& url, |
| 632 const blink::WebString& title) override; | 632 const blink::WebString& title) override; |
| 633 void unregisterProtocolHandler(const blink::WebString& scheme, | 633 void unregisterProtocolHandler(const blink::WebString& scheme, |
| 634 const blink::WebURL& url) override; | 634 const blink::WebURL& url) override; |
| 635 blink::WebBluetooth* bluetooth() override; | 635 blink::WebBluetooth* bluetooth() override; |
| 636 void checkIfAudioSinkExistsAndIsAuthorized( | 636 void checkIfAudioSinkExistsAndIsAuthorized( |
| 637 const blink::WebString& sink_id, | 637 const blink::WebString& sink_id, |
| (...skipping 663 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1301 mojom::FrameHostPtr frame_host_; | 1301 mojom::FrameHostPtr frame_host_; |
| 1302 | 1302 |
| 1303 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1303 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1304 | 1304 |
| 1305 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1305 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1306 }; | 1306 }; |
| 1307 | 1307 |
| 1308 } // namespace content | 1308 } // namespace content |
| 1309 | 1309 |
| 1310 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1310 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |