Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1231)

Unified Diff: chrome/browser/extensions/external_extension_util.h

Issue 9963120: Introduces an additional extension loader that load extra extensions based on per-extension json fi… (Closed) Base URL: https://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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,25 @@
+// 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 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.
+class FilePath;
+class ValueSerializer;
+}
+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
+
+// Provides various utility functions for external extension manipulation.
+class ExternalExtensionUtil {
+ public:
+ static base::DictionaryValue* ExtractPrefs(const FilePath& path
+ , 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.
+};
+
+#endif // CHROME_BROWSER_EXTENSIONS_EXTERNAL_EXTENSION_UTIL_H__
+

Powered by Google App Engine
This is Rietveld 408576698