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

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

Issue 10175008: Improving the process model extension API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressing feedback by Matt. Created 8 years, 7 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_EXTENSION_FUNCTION_UTIL_H__
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_FUNCTION_UTIL_H__
7 #pragma once
8
9 #include <vector>
10 #include "base/values.h"
11
12 namespace base {
13 class Value;
14 }
15
16
17 // Provides various utility functions for extension API implementations.
18 class ExtensionFuncUtil {
19 public:
20 // Reads the |value| as either a single integer value or a list of integers.
21 static bool ReadOneOrMoreIntegers(base::Value* value,
22 std::vector<int>* result);
23 };
24
25 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_FUNCTION_UTIL_H__
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698