Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTERNAL_EXTENSION_UTIL_H__ | |
| 6 #define CHROME_BROWSER_EXTENSIONS_EXTERNAL_EXTENSION_UTIL_H__ | |
| 7 #pragma once | |
| 8 | |
| 9 namespace base { | |
| 10 class DictionaryValue; | |
| 11 class ListValue; | |
|
Sam Kerner (Chrome)
2012/04/13 19:35:13
I think you don't use DictionaryValue or ListValue
Alexandre Abreu
2012/04/13 21:52:38
Done.
| |
| 12 class FilePath; | |
| 13 class ValueSerializer; | |
| 14 } | |
| 15 class FilePath; | |
|
Sam Kerner (Chrome)
2012/04/13 19:35:13
File path is declared both inside namespace base a
Alexandre Abreu
2012/04/13 21:52:38
yes, from what I see
| |
| 16 | |
| 17 // Provides various utility functions for external extension manipulation. | |
| 18 class ExternalExtensionUtil { | |
| 19 public: | |
| 20 static base::DictionaryValue* ExtractPrefs(const FilePath& path | |
| 21 , base::ValueSerializer* serializer); | |
|
Sam Kerner (Chrome)
2012/04/13 19:35:13
Style nit: comma belongs on the previous line, and
Alexandre Abreu
2012/04/13 21:52:38
Done.
| |
| 22 }; | |
| 23 | |
| 24 #endif // CHROME_BROWSER_EXTENSIONS_EXTERNAL_EXTENSION_UTIL_H__ | |
| 25 | |
| OLD | NEW |