Index: content/renderer/renderer_blink_platform_impl.h |
diff --git a/content/renderer/renderer_blink_platform_impl.h b/content/renderer/renderer_blink_platform_impl.h |
index 2c05ea6608505a209483f954d3607f8c34c928b5..c264aa0c92987d224e311003be31ee12ed353a86 100644 |
--- a/content/renderer/renderer_blink_platform_impl.h |
+++ b/content/renderer/renderer_blink_platform_impl.h |
@@ -49,6 +49,7 @@ class WebThreadImplForRendererScheduler; |
} |
namespace content { |
+class BlinkServiceRegistryImpl; |
class DeviceLightEventPump; |
class DeviceMotionEventPump; |
class DeviceOrientationEventPump; |
@@ -178,8 +179,7 @@ class CONTENT_EXPORT RendererBlinkPlatformImpl : public BlinkPlatformImpl { |
blink::WebString convertIDNToUnicode( |
const blink::WebString& host, |
const blink::WebString& languages) override; |
- void connectToRemoteService(const char* name, |
- mojo::ScopedMessagePipeHandle handle) override; |
+ blink::ServiceRegistry* serviceRegistry() override; |
void startListening(blink::WebPlatformEventType, |
blink::WebPlatformEventListener*) override; |
void stopListening(blink::WebPlatformEventType) override; |
@@ -299,6 +299,8 @@ class CONTENT_EXPORT RendererBlinkPlatformImpl : public BlinkPlatformImpl { |
scoped_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; |
+ scoped_ptr<BlinkServiceRegistryImpl> blink_service_registry_; |
+ |
DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
}; |