Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1002)

Side by Side Diff: content/public/browser/content_browser_client.cc

Issue 12194007: Revert 180055: Very likely caused http://crbug.com/173885 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/public/browser/content_browser_client.h ('k') | content/public/common/url_constants.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 BrowserContext* browser_context, 230 BrowserContext* browser_context,
231 const GURL& url, 231 const GURL& url,
232 const SocketPermissionRequest& params) { 232 const SocketPermissionRequest& params) {
233 return false; 233 return false;
234 } 234 }
235 235
236 FilePath ContentBrowserClient::GetHyphenDictionaryDirectory() { 236 FilePath ContentBrowserClient::GetHyphenDictionaryDirectory() {
237 return FilePath(); 237 return FilePath();
238 } 238 }
239 239
240 ui::SelectFilePolicy* ContentBrowserClient::CreateSelectFilePolicy(
241 WebContents* web_contents) {
242 return NULL;
243 }
244
245 #if defined(OS_WIN) 240 #if defined(OS_WIN)
246 const wchar_t* ContentBrowserClient::GetResourceDllName() { 241 const wchar_t* ContentBrowserClient::GetResourceDllName() {
247 return NULL; 242 return NULL;
248 } 243 }
249 #endif 244 #endif
250 245
251 #if defined(USE_NSS) 246 #if defined(USE_NSS)
252 crypto::CryptoModuleBlockingPasswordDelegate* 247 crypto::CryptoModuleBlockingPasswordDelegate*
253 ContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) { 248 ContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) {
254 return NULL; 249 return NULL;
255 } 250 }
256 #endif 251 #endif
257 252
258 } // namespace content 253 } // namespace content
OLDNEW
« no previous file with comments | « content/public/browser/content_browser_client.h ('k') | content/public/common/url_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698