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

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: big delta Created 4 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
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 StaticMojoApplicationMap* apps) override; 40 StaticMojoApplicationMap* apps) override;
41 void RegisterOutOfProcessMojoApplications( 41 void RegisterOutOfProcessMojoApplications(
42 OutOfProcessMojoApplicationMap* apps) override; 42 OutOfProcessMojoApplicationMap* apps) 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 GetTemporaryStorageConfiguration(
51 content::BrowserContext* context,
52 const base::FilePath& partition_path, bool is_incognito,
53 const storage::TemporaryStorageConfigurationCallback& 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 58
55 SpeechRecognitionManagerDelegate* CreateSpeechRecognitionManagerDelegate() 59 SpeechRecognitionManagerDelegate* CreateSpeechRecognitionManagerDelegate()
56 override; 60 override;
57 net::NetLog* GetNetLog() override; 61 net::NetLog* GetNetLog() override;
58 bool ShouldSwapProcessesForRedirect(BrowserContext* browser_context, 62 bool ShouldSwapProcessesForRedirect(BrowserContext* browser_context,
59 const GURL& current_url, 63 const GURL& current_url,
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 resource_dispatcher_host_delegate_; 114 resource_dispatcher_host_delegate_;
111 115
112 base::Closure select_client_certificate_callback_; 116 base::Closure select_client_certificate_callback_;
113 117
114 ShellBrowserMainParts* shell_browser_main_parts_; 118 ShellBrowserMainParts* shell_browser_main_parts_;
115 }; 119 };
116 120
117 } // namespace content 121 } // namespace content
118 122
119 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ 123 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698