| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 virtual void ChangeAppLocale( | 104 virtual void ChangeAppLocale( |
| 105 const std::string& locale, AppLocaleChangedVia via) OVERRIDE; | 105 const std::string& locale, AppLocaleChangedVia via) OVERRIDE; |
| 106 virtual void OnLogin() OVERRIDE; | 106 virtual void OnLogin() OVERRIDE; |
| 107 virtual void InitChromeOSPreferences() OVERRIDE; | 107 virtual void InitChromeOSPreferences() OVERRIDE; |
| 108 #endif // defined(OS_CHROMEOS) | 108 #endif // defined(OS_CHROMEOS) |
| 109 | 109 |
| 110 virtual PrefProxyConfigTracker* GetProxyConfigTracker() OVERRIDE; | 110 virtual PrefProxyConfigTracker* GetProxyConfigTracker() OVERRIDE; |
| 111 virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE; | 111 virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE; |
| 112 virtual void ClearNetworkingHistorySince( | 112 virtual void ClearNetworkingHistorySince( |
| 113 base::Time time, const base::Closure& completion) OVERRIDE; | 113 base::Time time, const base::Closure& completion) OVERRIDE; |
| 114 virtual void ClearDomainReliabilityMonitor( |
| 115 bool clear_contexts, const base::Closure& completion) OVERRIDE; |
| 114 virtual GURL GetHomePage() OVERRIDE; | 116 virtual GURL GetHomePage() OVERRIDE; |
| 115 virtual bool WasCreatedByVersionOrLater(const std::string& version) OVERRIDE; | 117 virtual bool WasCreatedByVersionOrLater(const std::string& version) OVERRIDE; |
| 116 virtual void SetExitType(ExitType exit_type) OVERRIDE; | 118 virtual void SetExitType(ExitType exit_type) OVERRIDE; |
| 117 virtual ExitType GetLastSessionExitType() OVERRIDE; | 119 virtual ExitType GetLastSessionExitType() OVERRIDE; |
| 118 | 120 |
| 119 private: | 121 private: |
| 120 std::string name_; | 122 std::string name_; |
| 121 base::FilePath path_; | 123 base::FilePath path_; |
| 122 }; | 124 }; |
| 123 | 125 |
| 124 #endif // CHROME_BROWSER_UI_APP_LIST_TEST_FAKE_PROFILE_H_ | 126 #endif // CHROME_BROWSER_UI_APP_LIST_TEST_FAKE_PROFILE_H_ |
| OLD | NEW |