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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 virtual bool IsSameProfile(Profile* profile) OVERRIDE; | 67 virtual bool IsSameProfile(Profile* profile) OVERRIDE; |
68 virtual Time GetStartTime() const OVERRIDE; | 68 virtual Time GetStartTime() const OVERRIDE; |
69 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE; | 69 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE; |
70 virtual history::TopSites* GetTopSites() OVERRIDE; | 70 virtual history::TopSites* GetTopSites() OVERRIDE; |
71 virtual void MarkAsCleanShutdown() OVERRIDE; | 71 virtual void MarkAsCleanShutdown() OVERRIDE; |
72 virtual void InitPromoResources() OVERRIDE; | 72 virtual void InitPromoResources() OVERRIDE; |
73 virtual void InitRegisteredProtocolHandlers() OVERRIDE; | 73 virtual void InitRegisteredProtocolHandlers() OVERRIDE; |
74 virtual FilePath last_selected_directory() OVERRIDE; | 74 virtual FilePath last_selected_directory() OVERRIDE; |
75 virtual void set_last_selected_directory(const FilePath& path) OVERRIDE; | 75 virtual void set_last_selected_directory(const FilePath& path) OVERRIDE; |
76 virtual bool WasCreatedByVersionOrLater(const std::string& version) OVERRIDE; | 76 virtual bool WasCreatedByVersionOrLater(const std::string& version) OVERRIDE; |
| 77 virtual UsbService* GetUsbService() OVERRIDE; |
77 | 78 |
78 #if defined(OS_CHROMEOS) | 79 #if defined(OS_CHROMEOS) |
79 virtual void SetupChromeOSEnterpriseExtensionObserver() OVERRIDE; | 80 virtual void SetupChromeOSEnterpriseExtensionObserver() OVERRIDE; |
80 virtual void InitChromeOSPreferences() OVERRIDE; | 81 virtual void InitChromeOSPreferences() OVERRIDE; |
81 | 82 |
82 virtual void ChangeAppLocale(const std::string& locale, | 83 virtual void ChangeAppLocale(const std::string& locale, |
83 AppLocaleChangedVia) OVERRIDE; | 84 AppLocaleChangedVia) OVERRIDE; |
84 virtual void OnLogin() OVERRIDE; | 85 virtual void OnLogin() OVERRIDE; |
85 #endif // defined(OS_CHROMEOS) | 86 #endif // defined(OS_CHROMEOS) |
86 | 87 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 Time start_time_; | 136 Time start_time_; |
136 | 137 |
137 FilePath last_selected_directory_; | 138 FilePath last_selected_directory_; |
138 | 139 |
139 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 140 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
140 | 141 |
141 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 142 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
142 }; | 143 }; |
143 | 144 |
144 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 145 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
OLD | NEW |