| OLD | NEW |
| 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 CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 5 #ifndef CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| 6 #define CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 6 #define CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/gtest_prod_util.h" | 10 #include "base/gtest_prod_util.h" |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 virtual void set_last_selected_directory(const base::FilePath& path) OVERRIDE; | 64 virtual void set_last_selected_directory(const base::FilePath& path) OVERRIDE; |
| 65 virtual bool WasCreatedByVersionOrLater(const std::string& version) OVERRIDE; | 65 virtual bool WasCreatedByVersionOrLater(const std::string& version) OVERRIDE; |
| 66 virtual void SetExitType(ExitType exit_type) OVERRIDE; | 66 virtual void SetExitType(ExitType exit_type) OVERRIDE; |
| 67 virtual ExitType GetLastSessionExitType() OVERRIDE; | 67 virtual ExitType GetLastSessionExitType() OVERRIDE; |
| 68 | 68 |
| 69 #if defined(OS_CHROMEOS) | 69 #if defined(OS_CHROMEOS) |
| 70 virtual void ChangeAppLocale(const std::string& locale, | 70 virtual void ChangeAppLocale(const std::string& locale, |
| 71 AppLocaleChangedVia) OVERRIDE; | 71 AppLocaleChangedVia) OVERRIDE; |
| 72 virtual void OnLogin() OVERRIDE; | 72 virtual void OnLogin() OVERRIDE; |
| 73 virtual void InitChromeOSPreferences() OVERRIDE; | 73 virtual void InitChromeOSPreferences() OVERRIDE; |
| 74 virtual bool IsLoginProfile() OVERRIDE; | |
| 75 #endif // defined(OS_CHROMEOS) | 74 #endif // defined(OS_CHROMEOS) |
| 76 | 75 |
| 77 virtual PrefProxyConfigTracker* GetProxyConfigTracker() OVERRIDE; | 76 virtual PrefProxyConfigTracker* GetProxyConfigTracker() OVERRIDE; |
| 78 | 77 |
| 79 virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE; | 78 virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE; |
| 80 virtual void ClearNetworkingHistorySince( | 79 virtual void ClearNetworkingHistorySince( |
| 81 base::Time time, | 80 base::Time time, |
| 82 const base::Closure& completion) OVERRIDE; | 81 const base::Closure& completion) OVERRIDE; |
| 83 virtual GURL GetHomePage() OVERRIDE; | 82 virtual GURL GetHomePage() OVERRIDE; |
| 84 | 83 |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 base::FilePath last_selected_directory_; | 141 base::FilePath last_selected_directory_; |
| 143 | 142 |
| 144 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 143 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 145 | 144 |
| 146 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_; | 145 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_; |
| 147 | 146 |
| 148 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 147 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
| 149 }; | 148 }; |
| 150 | 149 |
| 151 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 150 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| OLD | NEW |