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

Side by Side Diff: content/shell/browser/layout_test/layout_test_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 4 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_LAYOUT_TEST_LAYOUT_TEST_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_CONTENT_BROWSER_CLIENT_H_
6 #define CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_CONTENT_BROWSER_CLIENT_H_ 6 #define CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_CONTENT_BROWSER_CLIENT_H_
7 7
8 #include "content/shell/browser/shell_content_browser_client.h" 8 #include "content/shell/browser/shell_content_browser_client.h"
9 9
10 namespace content { 10 namespace content {
(...skipping 19 matching lines...) Expand all
30 void ExposeInterfacesToRenderer( 30 void ExposeInterfacesToRenderer(
31 service_manager::InterfaceRegistry* registry, 31 service_manager::InterfaceRegistry* registry,
32 RenderProcessHost* render_process_host) override; 32 RenderProcessHost* render_process_host) override;
33 void OverrideWebkitPrefs(RenderViewHost* render_view_host, 33 void OverrideWebkitPrefs(RenderViewHost* render_view_host,
34 WebPreferences* prefs) override; 34 WebPreferences* prefs) override;
35 void ResourceDispatcherHostCreated() override; 35 void ResourceDispatcherHostCreated() override;
36 void AppendExtraCommandLineSwitches(base::CommandLine* command_line, 36 void AppendExtraCommandLineSwitches(base::CommandLine* command_line,
37 int child_process_id) override; 37 int child_process_id) override;
38 BrowserMainParts* CreateBrowserMainParts( 38 BrowserMainParts* CreateBrowserMainParts(
39 const MainFunctionParams& parameters) override; 39 const MainFunctionParams& parameters) override;
40 void GetQuotaSettings(
41 BrowserContext* context,
42 const base::FilePath& partition_path,
43 bool is_incognito,
44 const storage::OptionalQuotaSettingsCallback& callback) override;
40 45
41 PlatformNotificationService* GetPlatformNotificationService() override; 46 PlatformNotificationService* GetPlatformNotificationService() override;
42 47
43 private: 48 private:
44 std::unique_ptr<LayoutTestNotificationManager> 49 std::unique_ptr<LayoutTestNotificationManager>
45 layout_test_notification_manager_; 50 layout_test_notification_manager_;
46 }; 51 };
47 52
48 } // content 53 } // content
49 54
50 #endif // CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_CONTENT_BROWSER_CLIENT_ H_ 55 #endif // CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_CONTENT_BROWSER_CLIENT_ H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698