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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 | 77 |
| 78 #if !defined(OS_ANDROID) |
| 79 virtual UsbService* GetUsbService() OVERRIDE; |
| 80 #endif // !defined(OS_ANDROID) |
| 81 |
78 #if defined(OS_CHROMEOS) | 82 #if defined(OS_CHROMEOS) |
79 virtual void SetupChromeOSEnterpriseExtensionObserver() OVERRIDE; | 83 virtual void SetupChromeOSEnterpriseExtensionObserver() OVERRIDE; |
80 virtual void InitChromeOSPreferences() OVERRIDE; | 84 virtual void InitChromeOSPreferences() OVERRIDE; |
81 | 85 |
82 virtual void ChangeAppLocale(const std::string& locale, | 86 virtual void ChangeAppLocale(const std::string& locale, |
83 AppLocaleChangedVia) OVERRIDE; | 87 AppLocaleChangedVia) OVERRIDE; |
84 virtual void OnLogin() OVERRIDE; | 88 virtual void OnLogin() OVERRIDE; |
85 #endif // defined(OS_CHROMEOS) | 89 #endif // defined(OS_CHROMEOS) |
86 | 90 |
87 virtual PrefProxyConfigTracker* GetProxyConfigTracker() OVERRIDE; | 91 virtual PrefProxyConfigTracker* GetProxyConfigTracker() OVERRIDE; |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 Time start_time_; | 139 Time start_time_; |
136 | 140 |
137 FilePath last_selected_directory_; | 141 FilePath last_selected_directory_; |
138 | 142 |
139 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 143 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
140 | 144 |
141 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 145 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
142 }; | 146 }; |
143 | 147 |
144 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 148 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
OLD | NEW |