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

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

Issue 1782053004: Change how the quota system computes the total poolsize for temporary storage (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 3 years, 10 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
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 <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 10
(...skipping 29 matching lines...) Expand all
40 void RegisterOutOfProcessServices(OutOfProcessServiceMap* services) override; 40 void RegisterOutOfProcessServices(OutOfProcessServiceMap* services) override;
41 std::unique_ptr<base::Value> GetServiceManifestOverlay( 41 std::unique_ptr<base::Value> GetServiceManifestOverlay(
42 base::StringPiece name) override; 42 base::StringPiece name) override;
43 void AppendExtraCommandLineSwitches(base::CommandLine* command_line, 43 void AppendExtraCommandLineSwitches(base::CommandLine* command_line,
44 int child_process_id) override; 44 int child_process_id) override;
45 void ResourceDispatcherHostCreated() override; 45 void ResourceDispatcherHostCreated() override;
46 std::string GetDefaultDownloadName() override; 46 std::string GetDefaultDownloadName() override;
47 WebContentsViewDelegate* GetWebContentsViewDelegate( 47 WebContentsViewDelegate* GetWebContentsViewDelegate(
48 WebContents* web_contents) override; 48 WebContents* web_contents) override;
49 QuotaPermissionContext* CreateQuotaPermissionContext() override; 49 QuotaPermissionContext* CreateQuotaPermissionContext() override;
50 void GetQuotaSettings(
51 content::BrowserContext* context,
52 content::StoragePartition* partition,
53 const storage::OptionalQuotaSettingsCallback& callback) override;
50 void SelectClientCertificate( 54 void SelectClientCertificate(
51 WebContents* web_contents, 55 WebContents* web_contents,
52 net::SSLCertRequestInfo* cert_request_info, 56 net::SSLCertRequestInfo* cert_request_info,
53 std::unique_ptr<ClientCertificateDelegate> delegate) override; 57 std::unique_ptr<ClientCertificateDelegate> delegate) override;
54 SpeechRecognitionManagerDelegate* CreateSpeechRecognitionManagerDelegate() 58 SpeechRecognitionManagerDelegate* CreateSpeechRecognitionManagerDelegate()
55 override; 59 override;
56 net::NetLog* GetNetLog() override; 60 net::NetLog* GetNetLog() override;
57 bool ShouldSwapProcessesForRedirect(BrowserContext* browser_context, 61 bool ShouldSwapProcessesForRedirect(BrowserContext* browser_context,
58 const GURL& current_url, 62 const GURL& current_url,
59 const GURL& new_url) override; 63 const GURL& new_url) override;
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 resource_dispatcher_host_delegate_; 107 resource_dispatcher_host_delegate_;
104 108
105 base::Closure select_client_certificate_callback_; 109 base::Closure select_client_certificate_callback_;
106 110
107 ShellBrowserMainParts* shell_browser_main_parts_; 111 ShellBrowserMainParts* shell_browser_main_parts_;
108 }; 112 };
109 113
110 } // namespace content 114 } // namespace content
111 115
112 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ 116 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « content/shell/browser/layout_test/layout_test_message_filter.cc ('k') | content/shell/browser/shell_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698