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

Unified Diff: chrome/browser/extensions/api/bluetooth/bluetooth_apitest_chromeos.cc

Issue 10694106: Added support for multiple parameters to Extension API callbacks. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Synced. Created 8 years, 5 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/api/bluetooth/bluetooth_apitest_chromeos.cc
diff --git a/chrome/browser/extensions/api/bluetooth/bluetooth_apitest_chromeos.cc b/chrome/browser/extensions/api/bluetooth/bluetooth_apitest_chromeos.cc
index 5ea158e4ab6d3456537aa75834c002c61be7daac..6eb0e20f9c0c356a19b69d6efa4b385c1d982cb0 100644
--- a/chrome/browser/extensions/api/bluetooth/bluetooth_apitest_chromeos.cc
+++ b/chrome/browser/extensions/api/bluetooth/bluetooth_apitest_chromeos.cc
@@ -46,7 +46,7 @@ class BluetoothApiTest : public PlatformAppApiTest {
UIThreadExtensionFunction* function,
const std::string& args) {
scoped_ptr<base::Value> result(
- utils::RunFunctionAndReturnResult(function, args, browser()));
+ utils::RunFunctionAndReturnSingleResult(function, args, browser()));
ASSERT_TRUE(result.get() != NULL);
ASSERT_EQ(base::Value::TYPE_BOOLEAN, result->GetType());
bool boolean_value;
@@ -151,7 +151,7 @@ IN_PROC_BROWSER_TEST_F(BluetoothApiTest, GetDevices) {
scoped_refptr<api::BluetoothGetDevicesFunction> get_devices;
get_devices = setupFunction(new api::BluetoothGetDevicesFunction);
- scoped_ptr<base::Value> result(utils::RunFunctionAndReturnResult(
+ scoped_ptr<base::Value> result(utils::RunFunctionAndReturnSingleResult(
get_devices,
"[{\"uuid\":\"foo\"}]",
browser()));
@@ -190,7 +190,7 @@ IN_PROC_BROWSER_TEST_F(BluetoothApiTest, GetDevices) {
get_devices = setupFunction(new api::BluetoothGetDevicesFunction);
result.reset(
- utils::RunFunctionAndReturnResult(get_devices, "[{}]", browser()));
+ utils::RunFunctionAndReturnSingleResult(get_devices, "[{}]", browser()));
ASSERT_EQ(base::Value::TYPE_LIST, result->GetType());
ASSERT_TRUE(result->GetAsList(&list));
@@ -208,8 +208,8 @@ IN_PROC_BROWSER_TEST_F(BluetoothApiTest, GetLocalOutOfBandPairingData) {
get_oob_function(setupFunction(
new api::BluetoothGetLocalOutOfBandPairingDataFunction));
- scoped_ptr<base::Value> result(
- utils::RunFunctionAndReturnResult(get_oob_function, "[]", browser()));
+ scoped_ptr<base::Value> result(utils::RunFunctionAndReturnSingleResult(
+ get_oob_function, "[]", browser()));
base::DictionaryValue* dict;
EXPECT_TRUE(result->GetAsDictionary(&dict));
@@ -254,7 +254,8 @@ IN_PROC_BROWSER_TEST_F(BluetoothApiTest, SetOutOfBandPairingData) {
set_oob_function = setupFunction(
new api::BluetoothSetOutOfBandPairingDataFunction);
// There isn't actually a result.
- (void)utils::RunFunctionAndReturnResult(set_oob_function, params, browser());
+ (void)utils::RunFunctionAndReturnSingleResult(
+ set_oob_function, params, browser());
// Try again with an error
testing::Mock::VerifyAndClearExpectations(mock_adapter_);
@@ -306,7 +307,7 @@ IN_PROC_BROWSER_TEST_F(BluetoothApiTest, Discovery) {
testing::_));
scoped_refptr<api::BluetoothStopDiscoveryFunction> stop_function;
stop_function = setupFunction(new api::BluetoothStopDiscoveryFunction);
- (void)utils::RunFunctionAndReturnResult(stop_function, "[]", browser());
+ (void)utils::RunFunctionAndReturnSingleResult(stop_function, "[]", browser());
// Reset to try stopping with an error
testing::Mock::VerifyAndClearExpectations(mock_adapter_);

Powered by Google App Engine
This is Rietveld 408576698