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

Side by Side Diff: chrome/browser/chrome_content_browser_client.h

Issue 7711010: Removal of Profile from content part 9 of 9. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: missing mock Created 9 years, 4 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 | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('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) 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 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "content/browser/content_browser_client.h" 10 #include "content/browser/content_browser_client.h"
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 content::BrowserContext* browser_context, 100 content::BrowserContext* browser_context,
101 bool is_web_ui) OVERRIDE; 101 bool is_web_ui) OVERRIDE;
102 virtual void UpdateInspectorSetting(RenderViewHost* rvh, 102 virtual void UpdateInspectorSetting(RenderViewHost* rvh,
103 const std::string& key, 103 const std::string& key,
104 const std::string& value) OVERRIDE; 104 const std::string& value) OVERRIDE;
105 virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE; 105 virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE;
106 virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE; 106 virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE;
107 virtual void ClearCache(RenderViewHost* rvh) OVERRIDE; 107 virtual void ClearCache(RenderViewHost* rvh) OVERRIDE;
108 virtual void ClearCookies(RenderViewHost* rvh) OVERRIDE; 108 virtual void ClearCookies(RenderViewHost* rvh) OVERRIDE;
109 virtual FilePath GetDefaultDownloadDirectory() OVERRIDE; 109 virtual FilePath GetDefaultDownloadDirectory() OVERRIDE;
110 virtual net::URLRequestContextGetter*
111 GetDefaultRequestContextDeprecatedCrBug64339() OVERRIDE;
110 112
111 #if defined(OS_POSIX) && !defined(OS_MACOSX) 113 #if defined(OS_POSIX) && !defined(OS_MACOSX)
112 // Can return an optional fd for crash handling, otherwise returns -1. 114 // Can return an optional fd for crash handling, otherwise returns -1.
113 virtual int GetCrashSignalFD(const std::string& process_type) OVERRIDE; 115 virtual int GetCrashSignalFD(const std::string& process_type) OVERRIDE;
114 #endif 116 #endif
115 #if defined(USE_NSS) 117 #if defined(USE_NSS)
116 virtual 118 virtual
117 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( 119 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate(
118 const GURL& url) OVERRIDE; 120 const GURL& url) OVERRIDE;
119 #endif 121 #endif
120 }; 122 };
121 123
122 } // namespace chrome 124 } // namespace chrome
123 125
124 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 126 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698