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 <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "base/memory/singleton.h" | 14 #include "base/memory/singleton.h" |
15 #include "base/timer.h" | 15 #include "base/timer.h" |
16 #include "base/values.h" | 16 #include "base/values.h" |
17 #include "chrome/common/net/url_fetcher.h" | 17 #include "content/common/url_fetcher.h" |
18 #include "googleurl/src/gurl.h" | 18 #include "googleurl/src/gurl.h" |
19 | 19 |
20 class DictionaryValue; | 20 class DictionaryValue; |
21 class FilePath; | 21 class FilePath; |
22 class ListValue; | 22 class ListValue; |
23 class PrefService; | 23 class PrefService; |
24 | 24 |
25 namespace base { | 25 namespace base { |
26 class Time; | 26 class Time; |
27 } | 27 } |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 | 205 |
206 // Initial locale value. | 206 // Initial locale value. |
207 std::string initial_locale_; | 207 std::string initial_locale_; |
208 | 208 |
209 DISALLOW_COPY_AND_ASSIGN(ServicesCustomizationDocument); | 209 DISALLOW_COPY_AND_ASSIGN(ServicesCustomizationDocument); |
210 }; | 210 }; |
211 | 211 |
212 } // namespace chromeos | 212 } // namespace chromeos |
213 | 213 |
214 #endif // CHROME_BROWSER_CHROMEOS_CUSTOMIZATION_DOCUMENT_H_ | 214 #endif // CHROME_BROWSER_CHROMEOS_CUSTOMIZATION_DOCUMENT_H_ |
OLD | NEW |