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

Side by Side Diff: chrome/browser/extensions/external_extension_util.h

Issue 10179002: Create an external source for extensions on linux that meets the needs of package managers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698