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

Side by Side Diff: ash/shell/content/client/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 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 (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 ASH_SHELL_CONTENT_CLIENT_SHELL_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef ASH_SHELL_CONTENT_CLIENT_SHELL_CONTENT_BROWSER_CLIENT_H_
6 #define ASH_SHELL_CONTENT_CLIENT_SHELL_CONTENT_BROWSER_CLIENT_H_ 6 #define ASH_SHELL_CONTENT_CLIENT_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 13 matching lines...) Expand all
24 24
25 class ShellContentBrowserClient : public content::ContentBrowserClient { 25 class ShellContentBrowserClient : public content::ContentBrowserClient {
26 public: 26 public:
27 ShellContentBrowserClient(); 27 ShellContentBrowserClient();
28 ~ShellContentBrowserClient() override; 28 ~ShellContentBrowserClient() override;
29 29
30 // Overridden from content::ContentBrowserClient: 30 // Overridden from content::ContentBrowserClient:
31 content::BrowserMainParts* CreateBrowserMainParts( 31 content::BrowserMainParts* CreateBrowserMainParts(
32 const content::MainFunctionParams& parameters) override; 32 const content::MainFunctionParams& parameters) override;
33 33
34 // TODO
35 // void GetTemporaryStorageConfiguration(
36 // content::BrowserContext* context,
37 // const base::FilePath& partition_path, bool is_incognito,
38 // const storage::TemporaryStorageConfigurationCallback& callback)override;
39
34 private: 40 private:
35 ShellBrowserMainParts* shell_browser_main_parts_; 41 ShellBrowserMainParts* shell_browser_main_parts_;
36 42
37 DISALLOW_COPY_AND_ASSIGN(ShellContentBrowserClient); 43 DISALLOW_COPY_AND_ASSIGN(ShellContentBrowserClient);
38 }; 44 };
39 45
40 } // namespace shell 46 } // namespace shell
41 } // namespace ash 47 } // namespace ash
42 48
43 #endif // ASH_SHELL_CONTENT_CLIENT_SHELL_CONTENT_BROWSER_CLIENT_H_ 49 #endif // ASH_SHELL_CONTENT_CLIENT_SHELL_CONTENT_BROWSER_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698