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

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

Issue 684613002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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
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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 bool IsPluginAllowedToCallRequestOSFileHandle( 254 bool IsPluginAllowedToCallRequestOSFileHandle(
255 content::BrowserContext* browser_context, 255 content::BrowserContext* browser_context,
256 const GURL& url) override; 256 const GURL& url) override;
257 bool IsPluginAllowedToUseDevChannelAPIs( 257 bool IsPluginAllowedToUseDevChannelAPIs(
258 content::BrowserContext* browser_context, 258 content::BrowserContext* browser_context,
259 const GURL& url) override; 259 const GURL& url) override;
260 net::CookieStore* OverrideCookieStoreForRenderProcess( 260 net::CookieStore* OverrideCookieStoreForRenderProcess(
261 int render_process_id) override; 261 int render_process_id) override;
262 262
263 #if defined(OS_POSIX) && !defined(OS_MACOSX) 263 #if defined(OS_POSIX) && !defined(OS_MACOSX)
264 virtual void GetAdditionalMappedFilesForChildProcess( 264 void GetAdditionalMappedFilesForChildProcess(
265 const base::CommandLine& command_line, 265 const base::CommandLine& command_line,
266 int child_process_id, 266 int child_process_id,
267 content::FileDescriptorInfo* mappings) override; 267 content::FileDescriptorInfo* mappings) override;
268 #endif 268 #endif
269 #if defined(OS_WIN) 269 #if defined(OS_WIN)
270 virtual const wchar_t* GetResourceDllName() override; 270 virtual const wchar_t* GetResourceDllName() override;
271 virtual void PreSpawnRenderer(sandbox::TargetPolicy* policy, 271 virtual void PreSpawnRenderer(sandbox::TargetPolicy* policy,
272 bool* success) override; 272 bool* success) override;
273 #endif 273 #endif
274 bool CheckMediaAccessPermission(content::BrowserContext* browser_context, 274 bool CheckMediaAccessPermission(content::BrowserContext* browser_context,
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 std::vector<ChromeContentBrowserClientParts*> extra_parts_; 330 std::vector<ChromeContentBrowserClientParts*> extra_parts_;
331 331
332 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; 332 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_;
333 333
334 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); 334 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient);
335 }; 335 };
336 336
337 } // namespace chrome 337 } // namespace chrome
338 338
339 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 339 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698