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

Unified Diff: chrome/browser/extensions/extension_function_util.cc

Issue 10175008: Improving the process model extension API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Syncing to the latest tree after a week away. 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/extension_function_util.cc
diff --git a/chrome/browser/extensions/extension_function_util.cc b/chrome/browser/extensions/extension_function_util.cc
new file mode 100644
index 0000000000000000000000000000000000000000..cc1d3fce7338af290fab492c925e478660a039a4
--- /dev/null
+++ b/chrome/browser/extensions/extension_function_util.cc
@@ -0,0 +1,30 @@
+// 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.
+
+#include "chrome/browser/extensions/extension_function_util.h"
+
+namespace extensions {
+
+bool ReadOneOrMoreIntegers(base::Value* value, std::vector<int>* result) {
+ if (value->IsType(Value::TYPE_INTEGER)) {
+ int v = -1;
+ if (!value->GetAsInteger(&v))
+ return false;
+ result->push_back(v);
+ return true;
+
+ } else if (value->IsType(Value::TYPE_LIST)) {
+ base::ListValue* values = static_cast<base::ListValue*>(value);
+ for (size_t i = 0; i < values->GetSize(); ++i) {
+ int v = -1;
+ if (!values->GetInteger(i, &v))
+ return false;
+ result->push_back(v);
+ }
+ return true;
+ }
+ return false;
+}
+
+} // namespace extensions
« no previous file with comments | « chrome/browser/extensions/extension_function_util.h ('k') | chrome/browser/extensions/extension_processes_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698