| 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_EXTENSIONS_DEFAULT_APPS_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_DEFAULT_APPS_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_DEFAULT_APPS_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_DEFAULT_APPS_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "chrome/browser/extensions/external_provider_impl.h" | 9 #include "chrome/browser/extensions/external_provider_impl.h" |
| 10 #include "chrome/common/extensions/manifest.h" | 10 #include "extensions/common/manifest.h" |
| 11 | 11 |
| 12 class Profile; | 12 class Profile; |
| 13 | 13 |
| 14 namespace base { | 14 namespace base { |
| 15 class DictionaryValue; | 15 class DictionaryValue; |
| 16 } | 16 } |
| 17 | 17 |
| 18 namespace user_prefs { | 18 namespace user_prefs { |
| 19 class PrefRegistrySyncable; | 19 class PrefRegistrySyncable; |
| 20 } | 20 } |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 private: | 57 private: |
| 58 Profile* profile_; | 58 Profile* profile_; |
| 59 bool is_migration_; | 59 bool is_migration_; |
| 60 | 60 |
| 61 DISALLOW_COPY_AND_ASSIGN(Provider); | 61 DISALLOW_COPY_AND_ASSIGN(Provider); |
| 62 }; | 62 }; |
| 63 | 63 |
| 64 } // namespace default_apps | 64 } // namespace default_apps |
| 65 | 65 |
| 66 #endif // CHROME_BROWSER_EXTENSIONS_DEFAULT_APPS_H_ | 66 #endif // CHROME_BROWSER_EXTENSIONS_DEFAULT_APPS_H_ |
| OLD | NEW |