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 <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
533 const blink::WebAXObject& start_object, | 533 const blink::WebAXObject& start_object, |
534 int start_offset, | 534 int start_offset, |
535 const blink::WebAXObject& end_object, | 535 const blink::WebAXObject& end_object, |
536 int end_offset); | 536 int end_offset); |
537 virtual void didChangeManifest(blink::WebLocalFrame*); | 537 virtual void didChangeManifest(blink::WebLocalFrame*); |
538 virtual void didChangeDefaultPresentation(blink::WebLocalFrame*); | 538 virtual void didChangeDefaultPresentation(blink::WebLocalFrame*); |
539 virtual bool enterFullscreen(); | 539 virtual bool enterFullscreen(); |
540 virtual bool exitFullscreen(); | 540 virtual bool exitFullscreen(); |
541 virtual blink::WebPermissionClient* permissionClient(); | 541 virtual blink::WebPermissionClient* permissionClient(); |
542 virtual blink::WebAppBannerClient* appBannerClient(); | 542 virtual blink::WebAppBannerClient* appBannerClient(); |
| 543 virtual void registerProtocolHandler(const blink::WebString& scheme, |
| 544 const blink::WebURL& url, |
| 545 const blink::WebString& title); |
| 546 virtual void unregisterProtocolHandler(const blink::WebString& scheme, |
| 547 const blink::WebURL& url); |
543 | 548 |
544 #if defined(ENABLE_WEBVR) | 549 #if defined(ENABLE_WEBVR) |
545 blink::WebVRClient* webVRClient() override; | 550 blink::WebVRClient* webVRClient() override; |
546 #endif | 551 #endif |
547 | 552 |
548 // WebMediaPlayerDelegate implementation: | 553 // WebMediaPlayerDelegate implementation: |
549 void DidPlay(blink::WebMediaPlayer* player) override; | 554 void DidPlay(blink::WebMediaPlayer* player) override; |
550 void DidPause(blink::WebMediaPlayer* player) override; | 555 void DidPause(blink::WebMediaPlayer* player) override; |
551 void PlayerGone(blink::WebMediaPlayer* player) override; | 556 void PlayerGone(blink::WebMediaPlayer* player) override; |
552 | 557 |
(...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1005 #endif | 1010 #endif |
1006 | 1011 |
1007 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1012 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1008 | 1013 |
1009 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1014 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1010 }; | 1015 }; |
1011 | 1016 |
1012 } // namespace content | 1017 } // namespace content |
1013 | 1018 |
1014 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1019 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |