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

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

Issue 10949027: Close leaking FDs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed last comments and synced. Created 8 years, 2 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) 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 #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 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <utility> 10 #include <utility>
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 virtual std::string GetDefaultDownloadName() OVERRIDE; 200 virtual std::string GetDefaultDownloadName() OVERRIDE;
201 virtual void DidCreatePpapiPlugin( 201 virtual void DidCreatePpapiPlugin(
202 content::BrowserPpapiHost* browser_host) OVERRIDE; 202 content::BrowserPpapiHost* browser_host) OVERRIDE;
203 virtual bool AllowPepperSocketAPI(content::BrowserContext* browser_context, 203 virtual bool AllowPepperSocketAPI(content::BrowserContext* browser_context,
204 const GURL& url) OVERRIDE; 204 const GURL& url) OVERRIDE;
205 virtual bool AllowPepperPrivateFileAPI() OVERRIDE; 205 virtual bool AllowPepperPrivateFileAPI() OVERRIDE;
206 206
207 #if defined(OS_POSIX) && !defined(OS_MACOSX) 207 #if defined(OS_POSIX) && !defined(OS_MACOSX)
208 virtual void GetAdditionalMappedFilesForChildProcess( 208 virtual void GetAdditionalMappedFilesForChildProcess(
209 const CommandLine& command_line, 209 const CommandLine& command_line,
210 base::GlobalDescriptors::Mapping* mappings) OVERRIDE; 210 std::vector<content::FileDescriptorInfo>* mappings) OVERRIDE;
211 #endif 211 #endif
212 #if defined(OS_WIN) 212 #if defined(OS_WIN)
213 virtual const wchar_t* GetResourceDllName() OVERRIDE; 213 virtual const wchar_t* GetResourceDllName() OVERRIDE;
214 #endif 214 #endif
215 #if defined(USE_NSS) 215 #if defined(USE_NSS)
216 virtual 216 virtual
217 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( 217 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate(
218 const GURL& url) OVERRIDE; 218 const GURL& url) OVERRIDE;
219 #endif 219 #endif
220 220
(...skipping 17 matching lines...) Expand all
238 // Cached version of the locale so we can return the locale on the I/O 238 // Cached version of the locale so we can return the locale on the I/O
239 // thread. 239 // thread.
240 std::string io_thread_application_locale_; 240 std::string io_thread_application_locale_;
241 241
242 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); 242 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient);
243 }; 243 };
244 244
245 } // namespace chrome 245 } // namespace chrome
246 246
247 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 247 #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