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/files/file_path.h" | 7 #include "base/files/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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
260 | 260 |
261 base::FilePath ContentBrowserClient::GetHyphenDictionaryDirectory() { | 261 base::FilePath ContentBrowserClient::GetHyphenDictionaryDirectory() { |
262 return base::FilePath(); | 262 return base::FilePath(); |
263 } | 263 } |
264 | 264 |
265 ui::SelectFilePolicy* ContentBrowserClient::CreateSelectFilePolicy( | 265 ui::SelectFilePolicy* ContentBrowserClient::CreateSelectFilePolicy( |
266 WebContents* web_contents) { | 266 WebContents* web_contents) { |
267 return NULL; | 267 return NULL; |
268 } | 268 } |
269 | 269 |
270 void ContentBrowserClient::GetAdditionalAllowedSchemesForFileSystem( | |
271 std::vector<std::string>* additional_schemes) { | |
jam
2013/04/12 16:50:01
since this method has no return type, you can inli
kinuko
2013/04/14 05:11:54
Done.
| |
272 } | |
273 | |
270 #if defined(OS_WIN) | 274 #if defined(OS_WIN) |
271 const wchar_t* ContentBrowserClient::GetResourceDllName() { | 275 const wchar_t* ContentBrowserClient::GetResourceDllName() { |
272 return NULL; | 276 return NULL; |
273 } | 277 } |
274 #endif | 278 #endif |
275 | 279 |
276 #if defined(USE_NSS) | 280 #if defined(USE_NSS) |
277 crypto::CryptoModuleBlockingPasswordDelegate* | 281 crypto::CryptoModuleBlockingPasswordDelegate* |
278 ContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) { | 282 ContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) { |
279 return NULL; | 283 return NULL; |
280 } | 284 } |
281 #endif | 285 #endif |
282 | 286 |
283 } // namespace content | 287 } // namespace content |
OLD | NEW |