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

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

Issue 8113035: Remove RenderProcessHost::is_extension_process (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updates Created 9 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 | « chrome/app/chrome_main.cc ('k') | 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 <string> 9 #include <string>
10 10
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 virtual void UpdateInspectorSetting(RenderViewHost* rvh, 114 virtual void UpdateInspectorSetting(RenderViewHost* rvh,
115 const std::string& key, 115 const std::string& key,
116 const std::string& value) OVERRIDE; 116 const std::string& value) OVERRIDE;
117 virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE; 117 virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE;
118 virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE; 118 virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE;
119 virtual void ClearCache(RenderViewHost* rvh) OVERRIDE; 119 virtual void ClearCache(RenderViewHost* rvh) OVERRIDE;
120 virtual void ClearCookies(RenderViewHost* rvh) OVERRIDE; 120 virtual void ClearCookies(RenderViewHost* rvh) OVERRIDE;
121 virtual FilePath GetDefaultDownloadDirectory() OVERRIDE; 121 virtual FilePath GetDefaultDownloadDirectory() OVERRIDE;
122 122
123 #if defined(OS_POSIX) && !defined(OS_MACOSX) 123 #if defined(OS_POSIX) && !defined(OS_MACOSX)
124 // Can return an optional fd for crash handling, otherwise returns -1. 124 virtual int GetCrashSignalFD(const CommandLine& command_line) OVERRIDE;
125 virtual int GetCrashSignalFD(const std::string& process_type) OVERRIDE;
126 #endif 125 #endif
127 #if defined(OS_WIN) 126 #if defined(OS_WIN)
128 virtual const wchar_t* GetResourceDllName() OVERRIDE; 127 virtual const wchar_t* GetResourceDllName() OVERRIDE;
129 #endif 128 #endif
130 #if defined(USE_NSS) 129 #if defined(USE_NSS)
131 virtual 130 virtual
132 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( 131 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate(
133 const GURL& url) OVERRIDE; 132 const GURL& url) OVERRIDE;
134 #endif 133 #endif
135 }; 134 };
136 135
137 } // namespace chrome 136 } // namespace chrome
138 137
139 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 138 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « chrome/app/chrome_main.cc ('k') | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698