OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_CHROMEOS_CUSTOMIZATION_DOCUMENT_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_CUSTOMIZATION_DOCUMENT_H_ |
6 #define CHROME_BROWSER_CHROMEOS_CUSTOMIZATION_DOCUMENT_H_ | 6 #define CHROME_BROWSER_CHROMEOS_CUSTOMIZATION_DOCUMENT_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/gtest_prod_util.h" | 11 #include "base/gtest_prod_util.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "base/memory/singleton.h" | 13 #include "base/memory/singleton.h" |
14 #include "base/timer.h" | 14 #include "base/timer.h" |
15 #include "base/values.h" | 15 #include "base/values.h" |
16 #include "content/public/common/url_fetcher_delegate.h" | 16 #include "content/public/common/url_fetcher_delegate.h" |
17 #include "googleurl/src/gurl.h" | 17 #include "googleurl/src/gurl.h" |
18 | 18 |
19 class FilePath; | 19 class FilePath; |
20 class PrefService; | 20 class PrefService; |
21 | 21 |
22 namespace base { | 22 namespace base { |
23 class DictionaryValue; | 23 class DictionaryValue; |
24 class ListValue; | |
25 } | 24 } |
26 | 25 |
27 namespace chromeos { | 26 namespace chromeos { |
28 | 27 |
29 namespace system { | 28 namespace system { |
30 class StatisticsProvider; | 29 class StatisticsProvider; |
31 } // system | 30 } // system |
32 | 31 |
33 // Base class for OEM customization document classes. | 32 // Base class for OEM customization document classes. |
34 class CustomizationDocument { | 33 class CustomizationDocument { |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 | 167 |
169 // How many times we already tried to fetch customization manifest file. | 168 // How many times we already tried to fetch customization manifest file. |
170 int num_retries_; | 169 int num_retries_; |
171 | 170 |
172 DISALLOW_COPY_AND_ASSIGN(ServicesCustomizationDocument); | 171 DISALLOW_COPY_AND_ASSIGN(ServicesCustomizationDocument); |
173 }; | 172 }; |
174 | 173 |
175 } // namespace chromeos | 174 } // namespace chromeos |
176 | 175 |
177 #endif // CHROME_BROWSER_CHROMEOS_CUSTOMIZATION_DOCUMENT_H_ | 176 #endif // CHROME_BROWSER_CHROMEOS_CUSTOMIZATION_DOCUMENT_H_ |
OLD | NEW |