| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "content/shell/shell_render_process_observer.h" | 7 #include "content/shell/shell_render_process_observer.h" |
| 8 #include "content/shell/shell_render_view_observer.h" | 8 #include "content/shell/shell_render_view_observer.h" |
| 9 #include "v8/include/v8.h" | 9 #include "v8/include/v8.h" |
| 10 | 10 |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 const GURL& url, | 135 const GURL& url, |
| 136 const GURL& first_party_for_cookies, | 136 const GURL& first_party_for_cookies, |
| 137 const std::string& value) { | 137 const std::string& value) { |
| 138 return false; | 138 return false; |
| 139 } | 139 } |
| 140 | 140 |
| 141 void ShellContentRendererClient::RegisterPPAPIInterfaceFactories( | 141 void ShellContentRendererClient::RegisterPPAPIInterfaceFactories( |
| 142 webkit::ppapi::PpapiInterfaceFactoryManager* factory_manager) { | 142 webkit::ppapi::PpapiInterfaceFactoryManager* factory_manager) { |
| 143 } | 143 } |
| 144 | 144 |
| 145 bool ShellContentRendererClient::AllowSocketAPI(const GURL& url) { | |
| 146 return false; | |
| 147 } | |
| 148 | |
| 149 } // namespace content | 145 } // namespace content |
| OLD | NEW |