Chromium Code Reviews| Index: chrome/browser/extensions/external_extension_util.h |
| =================================================================== |
| --- chrome/browser/extensions/external_extension_util.h (revision 0) |
| +++ chrome/browser/extensions/external_extension_util.h (revision 0) |
| @@ -0,0 +1,23 @@ |
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_EXTENSIONS_EXTERNAL_EXTENSION_UTIL_H__ |
| +#define CHROME_BROWSER_EXTENSIONS_EXTERNAL_EXTENSION_UTIL_H__ |
| +#pragma once |
| + |
| +namespace base { |
| +class DictionaryValue; |
| +class ValueSerializer; |
| +} |
| +class FilePath; |
| + |
| +// Provides various utility functions for external extension manipulation. |
| +class ExternalExtensionUtil { |
| + public: |
| + static base::DictionaryValue* ExtractPrefs(const FilePath& path |
|
Sam Kerner (Chrome)
2012/04/13 22:11:02
, on wrong line.
Alexandre Abreu
2012/04/13 23:24:46
Done.
|
| + , base::ValueSerializer* serializer); |
| +}; |
| + |
| +#endif // CHROME_BROWSER_EXTENSIONS_EXTERNAL_EXTENSION_UTIL_H__ |
| + |