OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 SERVICES_NAVIGATION_CONTENT_CLIENT_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef SERVICES_NAVIGATION_CONTENT_CLIENT_CONTENT_BROWSER_CLIENT_H_ |
6 #define SERVICES_NAVIGATION_CONTENT_CLIENT_CONTENT_BROWSER_CLIENT_H_ | 6 #define SERVICES_NAVIGATION_CONTENT_CLIENT_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 10 matching lines...) Expand all Loading... |
21 ~ContentBrowserClient() override; | 21 ~ContentBrowserClient() override; |
22 | 22 |
23 // Overridden from content::ContentBrowserClient: | 23 // Overridden from content::ContentBrowserClient: |
24 content::BrowserMainParts* CreateBrowserMainParts( | 24 content::BrowserMainParts* CreateBrowserMainParts( |
25 const content::MainFunctionParams& parameters) override; | 25 const content::MainFunctionParams& parameters) override; |
26 std::string GetShellUserIdForBrowserContext( | 26 std::string GetShellUserIdForBrowserContext( |
27 content::BrowserContext* browser_context) override; | 27 content::BrowserContext* browser_context) override; |
28 void RegisterInProcessMojoApplications( | 28 void RegisterInProcessMojoApplications( |
29 StaticMojoApplicationMap* apps) override; | 29 StaticMojoApplicationMap* apps) override; |
30 | 30 |
| 31 // TODO |
| 32 // void GetTemporaryStorageConfiguration( |
| 33 // content::BrowserContext* context, |
| 34 // const base::FilePath& partition_path, bool is_incognito, |
| 35 // const storage::TemporaryStorageConfigurationCallback& callback)override; |
| 36 |
31 private: | 37 private: |
32 BrowserMainParts* browser_main_parts_ = nullptr; | 38 BrowserMainParts* browser_main_parts_ = nullptr; |
33 | 39 |
34 DISALLOW_COPY_AND_ASSIGN(ContentBrowserClient); | 40 DISALLOW_COPY_AND_ASSIGN(ContentBrowserClient); |
35 }; | 41 }; |
36 | 42 |
37 } // namespace navigation | 43 } // namespace navigation |
38 | 44 |
39 #endif // SERVICES_NAVIGATION_CONTENT_CLIENT_CONTENT_BROWSER_CLIENT_H_ | 45 #endif // SERVICES_NAVIGATION_CONTENT_CLIENT_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |