OLD | NEW |
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 CHROME_BROWSER_UI_APP_LIST_TEST_FAKE_PROFILE_H_ | 5 #ifndef CHROME_BROWSER_UI_APP_LIST_TEST_FAKE_PROFILE_H_ |
6 #define CHROME_BROWSER_UI_APP_LIST_TEST_FAKE_PROFILE_H_ | 6 #define CHROME_BROWSER_UI_APP_LIST_TEST_FAKE_PROFILE_H_ |
7 | 7 |
8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "base/sequenced_task_runner.h" | 10 #include "base/sequenced_task_runner.h" |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess( | 44 net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess( |
45 int renderer_child_id) override; | 45 int renderer_child_id) override; |
46 net::URLRequestContextGetter* GetMediaRequestContextForStoragePartition( | 46 net::URLRequestContextGetter* GetMediaRequestContextForStoragePartition( |
47 const base::FilePath& partition_path, | 47 const base::FilePath& partition_path, |
48 bool in_memory) override; | 48 bool in_memory) override; |
49 content::ResourceContext* GetResourceContext() override; | 49 content::ResourceContext* GetResourceContext() override; |
50 content::BrowserPluginGuestManager* GetGuestManager() override; | 50 content::BrowserPluginGuestManager* GetGuestManager() override; |
51 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override; | 51 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override; |
52 content::PushMessagingService* GetPushMessagingService() override; | 52 content::PushMessagingService* GetPushMessagingService() override; |
53 content::SSLHostStateDelegate* GetSSLHostStateDelegate() override; | 53 content::SSLHostStateDelegate* GetSSLHostStateDelegate() override; |
| 54 content::PermissionManager* GetPermissionManager() override; |
54 scoped_refptr<base::SequencedTaskRunner> GetIOTaskRunner() override; | 55 scoped_refptr<base::SequencedTaskRunner> GetIOTaskRunner() override; |
55 Profile* GetOffTheRecordProfile() override; | 56 Profile* GetOffTheRecordProfile() override; |
56 void DestroyOffTheRecordProfile() override; | 57 void DestroyOffTheRecordProfile() override; |
57 bool HasOffTheRecordProfile() override; | 58 bool HasOffTheRecordProfile() override; |
58 Profile* GetOriginalProfile() override; | 59 Profile* GetOriginalProfile() override; |
59 bool IsSupervised() override; | 60 bool IsSupervised() override; |
60 bool IsChild() override; | 61 bool IsChild() override; |
61 bool IsLegacySupervised() override; | 62 bool IsLegacySupervised() override; |
62 ExtensionSpecialStoragePolicy* GetExtensionSpecialStoragePolicy() override; | 63 ExtensionSpecialStoragePolicy* GetExtensionSpecialStoragePolicy() override; |
63 PrefService* GetPrefs() override; | 64 PrefService* GetPrefs() override; |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 bool WasCreatedByVersionOrLater(const std::string& version) override; | 97 bool WasCreatedByVersionOrLater(const std::string& version) override; |
97 void SetExitType(ExitType exit_type) override; | 98 void SetExitType(ExitType exit_type) override; |
98 ExitType GetLastSessionExitType() override; | 99 ExitType GetLastSessionExitType() override; |
99 | 100 |
100 private: | 101 private: |
101 std::string name_; | 102 std::string name_; |
102 base::FilePath path_; | 103 base::FilePath path_; |
103 }; | 104 }; |
104 | 105 |
105 #endif // CHROME_BROWSER_UI_APP_LIST_TEST_FAKE_PROFILE_H_ | 106 #endif // CHROME_BROWSER_UI_APP_LIST_TEST_FAKE_PROFILE_H_ |
OLD | NEW |