| Index: content/renderer/renderer_blink_platform_impl.cc
|
| diff --git a/content/renderer/renderer_blink_platform_impl.cc b/content/renderer/renderer_blink_platform_impl.cc
|
| index 16c36c6dab517afb5faf1d5b68e735846afa1a93..2e3702716bc7d43b2ec0d8b225a1e876b2872d1f 100644
|
| --- a/content/renderer/renderer_blink_platform_impl.cc
|
| +++ b/content/renderer/renderer_blink_platform_impl.cc
|
| @@ -796,27 +796,6 @@ blink::WebString RendererBlinkPlatformImpl::signedPublicKeyAndChallengeString(
|
|
|
| //------------------------------------------------------------------------------
|
|
|
| -void RendererBlinkPlatformImpl::screenColorProfile(
|
| - WebVector<char>* to_profile) {
|
| -#if defined(OS_WIN)
|
| - // On Windows screen color profile is only available in the browser.
|
| - std::vector<char> profile;
|
| - // This Send() can be called from any impl-side thread. Use a thread
|
| - // safe send to avoid crashing trying to access RenderThread::Get(),
|
| - // which is not accessible from arbitrary threads.
|
| - thread_safe_sender_->Send(
|
| - new RenderProcessHostMsg_GetMonitorColorProfile(&profile));
|
| - *to_profile = profile;
|
| -#else
|
| - // On other platforms, the primary monitor color profile can be read
|
| - // directly.
|
| - gfx::ColorProfile profile;
|
| - *to_profile = profile.profile();
|
| -#endif
|
| -}
|
| -
|
| -//------------------------------------------------------------------------------
|
| -
|
| blink::WebScrollbarBehavior* RendererBlinkPlatformImpl::scrollbarBehavior() {
|
| return web_scrollbar_behavior_.get();
|
| }
|
|
|