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__ | |
|
Finnur
2012/04/24 13:03:24
This is old school. New files use single trailing
Alexandre Abreu
2012/04/24 19:30:30
Done.
| |
| 6 #define CHROME_BROWSER_EXTENSIONS_EXTERNAL_EXTENSION_UTIL_H__ | |
| 7 #pragma once | |
| 8 | |
| 9 namespace base { | |
| 10 class DictionaryValue; | |
| 11 class ValueSerializer; | |
| 12 } | |
| 13 class FilePath; | |
| 14 | |
| 15 // Provides various utility functions for external extension manipulation. | |
| 16 class ExternalExtensionUtil { | |
|
Finnur
2012/04/24 13:03:24
Files and classes that end in Util tend to accumul
Sam Kerner (Chrome)
2012/04/24 15:27:54
This is used in external_filesystem_extension_load
| |
| 17 public: | |
| 18 static base::DictionaryValue* ExtractPrefs(const FilePath& path, | |
| 19 base::ValueSerializer* serializer); | |
|
Finnur
2012/04/24 13:03:24
Can we use the WARN_ON_UNUSED_RESULT macro for thi
| |
| 20 }; | |
|
Finnur
2012/04/24 13:03:24
It feels like this should be a namespace and not a
| |
| 21 | |
| 22 #endif // CHROME_BROWSER_EXTENSIONS_EXTERNAL_EXTENSION_UTIL_H__ | |
| 23 | |
| OLD | NEW |