| 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 <string> |
| 8 #include <vector> | 9 #include <vector> |
| 9 | 10 |
| 10 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 11 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
| 12 #include "base/gtest_prod_util.h" | 13 #include "base/gtest_prod_util.h" |
| 13 #include "base/id_map.h" | 14 #include "base/id_map.h" |
| 14 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
| 16 #include "base/observer_list.h" | 17 #include "base/observer_list.h" |
| 17 #include "base/process/process_handle.h" | 18 #include "base/process/process_handle.h" |
| (...skipping 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 577 bool exitFullscreen() override; | 578 bool exitFullscreen() override; |
| 578 blink::WebPermissionClient* permissionClient() override; | 579 blink::WebPermissionClient* permissionClient() override; |
| 579 blink::WebAppBannerClient* appBannerClient() override; | 580 blink::WebAppBannerClient* appBannerClient() override; |
| 580 void registerProtocolHandler(const blink::WebString& scheme, | 581 void registerProtocolHandler(const blink::WebString& scheme, |
| 581 const blink::WebURL& url, | 582 const blink::WebURL& url, |
| 582 const blink::WebString& title) override; | 583 const blink::WebString& title) override; |
| 583 void unregisterProtocolHandler(const blink::WebString& scheme, | 584 void unregisterProtocolHandler(const blink::WebString& scheme, |
| 584 const blink::WebURL& url) override; | 585 const blink::WebURL& url) override; |
| 585 blink::WebBluetooth* bluetooth() override; | 586 blink::WebBluetooth* bluetooth() override; |
| 586 blink::WebUSBClient* usbClient() override; | 587 blink::WebUSBClient* usbClient() override; |
| 588 void checkIfAudioSinkExistsAndIsAuthorized( |
| 589 const blink::WebString& sink_id, |
| 590 const blink::WebSecurityOrigin& security_origin, |
| 591 blink::WebSetSinkIdCallbacks* web_callbacks) override; |
| 587 | 592 |
| 588 #if defined(ENABLE_WEBVR) | 593 #if defined(ENABLE_WEBVR) |
| 589 blink::WebVRClient* webVRClient() override; | 594 blink::WebVRClient* webVRClient() override; |
| 590 #endif | 595 #endif |
| 591 | 596 |
| 592 // WebPageSerializerClient implementation: | 597 // WebPageSerializerClient implementation: |
| 593 void didSerializeDataForFrame( | 598 void didSerializeDataForFrame( |
| 594 const blink::WebCString& data, | 599 const blink::WebCString& data, |
| 595 blink::WebPageSerializerClient::PageSerializationStatus status) override; | 600 blink::WebPageSerializerClient::PageSerializationStatus status) override; |
| 596 | 601 |
| (...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1097 #endif | 1102 #endif |
| 1098 | 1103 |
| 1099 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1104 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1100 | 1105 |
| 1101 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1106 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1102 }; | 1107 }; |
| 1103 | 1108 |
| 1104 } // namespace content | 1109 } // namespace content |
| 1105 | 1110 |
| 1106 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1111 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |