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/public/browser/content_browser_client.h" | 5 #include "content/public/browser/content_browser_client.h" |
6 | 6 |
7 #include "base/file_path.h" | 7 #include "base/file_path.h" |
8 #include "googleurl/src/gurl.h" | 8 #include "googleurl/src/gurl.h" |
9 #include "ui/gfx/image/image_skia.h" | 9 #include "ui/gfx/image/image_skia.h" |
10 | 10 |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
234 | 234 |
235 bool ContentBrowserClient::AllowPepperSocketAPI( | 235 bool ContentBrowserClient::AllowPepperSocketAPI( |
236 BrowserContext* browser_context, const GURL& url) { | 236 BrowserContext* browser_context, const GURL& url) { |
237 return false; | 237 return false; |
238 } | 238 } |
239 | 239 |
240 bool ContentBrowserClient::AllowPepperPrivateFileAPI() { | 240 bool ContentBrowserClient::AllowPepperPrivateFileAPI() { |
241 return false; | 241 return false; |
242 } | 242 } |
243 | 243 |
| 244 FilePath ContentBrowserClient::GetHyphenDictionaryDirectory() { |
| 245 return FilePath(); |
| 246 } |
| 247 |
244 #if defined(OS_WIN) | 248 #if defined(OS_WIN) |
245 const wchar_t* ContentBrowserClient::GetResourceDllName() { | 249 const wchar_t* ContentBrowserClient::GetResourceDllName() { |
246 return NULL; | 250 return NULL; |
247 } | 251 } |
248 #endif | 252 #endif |
249 | 253 |
250 #if defined(USE_NSS) | 254 #if defined(USE_NSS) |
251 crypto::CryptoModuleBlockingPasswordDelegate* | 255 crypto::CryptoModuleBlockingPasswordDelegate* |
252 ContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) { | 256 ContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) { |
253 return NULL; | 257 return NULL; |
254 } | 258 } |
255 #endif | 259 #endif |
256 | 260 |
257 } // namespace content | 261 } // namespace content |
OLD | NEW |