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

Side by Side Diff: content/shell/browser/shell_content_browser_client.h

Issue 686523002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_
6 #define CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ 6 #define CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 QuotaPermissionContext* CreateQuotaPermissionContext() override; 57 QuotaPermissionContext* CreateQuotaPermissionContext() override;
58 SpeechRecognitionManagerDelegate* GetSpeechRecognitionManagerDelegate() 58 SpeechRecognitionManagerDelegate* GetSpeechRecognitionManagerDelegate()
59 override; 59 override;
60 net::NetLog* GetNetLog() override; 60 net::NetLog* GetNetLog() override;
61 bool ShouldSwapProcessesForRedirect(ResourceContext* resource_context, 61 bool ShouldSwapProcessesForRedirect(ResourceContext* resource_context,
62 const GURL& current_url, 62 const GURL& current_url,
63 const GURL& new_url) override; 63 const GURL& new_url) override;
64 DevToolsManagerDelegate* GetDevToolsManagerDelegate() override; 64 DevToolsManagerDelegate* GetDevToolsManagerDelegate() override;
65 65
66 #if defined(OS_POSIX) && !defined(OS_MACOSX) 66 #if defined(OS_POSIX) && !defined(OS_MACOSX)
67 virtual void GetAdditionalMappedFilesForChildProcess( 67 void GetAdditionalMappedFilesForChildProcess(
68 const base::CommandLine& command_line, 68 const base::CommandLine& command_line,
69 int child_process_id, 69 int child_process_id,
70 FileDescriptorInfo* mappings) override; 70 FileDescriptorInfo* mappings) override;
71 #endif 71 #endif
72 #if defined(OS_WIN) 72 #if defined(OS_WIN)
73 virtual void PreSpawnRenderer(sandbox::TargetPolicy* policy, 73 virtual void PreSpawnRenderer(sandbox::TargetPolicy* policy,
74 bool* success) override; 74 bool* success) override;
75 #endif 75 #endif
76 76
77 ShellBrowserContext* browser_context(); 77 ShellBrowserContext* browser_context();
(...skipping 11 matching lines...) Expand all
89 89
90 scoped_ptr<ShellResourceDispatcherHostDelegate> 90 scoped_ptr<ShellResourceDispatcherHostDelegate>
91 resource_dispatcher_host_delegate_; 91 resource_dispatcher_host_delegate_;
92 92
93 ShellBrowserMainParts* shell_browser_main_parts_; 93 ShellBrowserMainParts* shell_browser_main_parts_;
94 }; 94 };
95 95
96 } // namespace content 96 } // namespace content
97 97
98 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ 98 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « content/shell/app/shell_main_delegate.h ('k') | content/shell/browser/shell_platform_data_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698