| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "content/shell/shell_content_renderer_client.h" | 5 #include "content/shell/shell_content_renderer_client.h" |
| 6 | 6 |
| 7 #include "v8/include/v8.h" | 7 #include "v8/include/v8.h" |
| 8 | 8 |
| 9 namespace content { | 9 namespace content { |
| 10 | 10 |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 } | 110 } |
| 111 | 111 |
| 112 bool ShellContentRendererClient::HandleSetCookieRequest( | 112 bool ShellContentRendererClient::HandleSetCookieRequest( |
| 113 RenderView* sender, | 113 RenderView* sender, |
| 114 const GURL& url, | 114 const GURL& url, |
| 115 const GURL& first_party_for_cookies, | 115 const GURL& first_party_for_cookies, |
| 116 const std::string& value) { | 116 const std::string& value) { |
| 117 return false; | 117 return false; |
| 118 } | 118 } |
| 119 | 119 |
| 120 bool ShellContentRendererClient::IsProtocolSupportedForMedia(const GURL& url) { | |
| 121 return false; | |
| 122 } | |
| 123 | |
| 124 void ShellContentRendererClient::RegisterPPAPIInterfaceFactories( | 120 void ShellContentRendererClient::RegisterPPAPIInterfaceFactories( |
| 125 webkit::ppapi::PpapiInterfaceFactoryManager* factory_manager) { | 121 webkit::ppapi::PpapiInterfaceFactoryManager* factory_manager) { |
| 126 } | 122 } |
| 127 | 123 |
| 128 } // namespace content | 124 } // namespace content |
| OLD | NEW |