blob: 63e1efe9a7292f3fe2c145e5f4fce0e5dbcee8b7 [file] [log] [blame]
// 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/api/idltest/idltest_api.h"
#include "base/values.h"
using base::BinaryValue;
namespace {
base::ListValue* CopyBinaryValueToIntegerList(const BinaryValue* input) {
base::ListValue* output = new base::ListValue();
const char* input_buffer = input->GetBuffer();
for (size_t i = 0; i < input->GetSize(); i++) {
output->Append(new base::FundamentalValue(input_buffer[i]));
}
return output;
}
} // namespace
bool IdltestSendArrayBufferFunction::RunImpl() {
BinaryValue* input = NULL;
EXTENSION_FUNCTION_VALIDATE(args_ != NULL && args_->GetBinary(0, &input));
SetResult(CopyBinaryValueToIntegerList(input));
return true;
}
bool IdltestSendArrayBufferViewFunction::RunImpl() {
BinaryValue* input = NULL;
EXTENSION_FUNCTION_VALIDATE(args_ != NULL && args_->GetBinary(0, &input));
SetResult(CopyBinaryValueToIntegerList(input));
return true;
}
bool IdltestGetArrayBufferFunction::RunImpl() {
std::string hello = "hello world";
BinaryValue* output =
BinaryValue::CreateWithCopiedBuffer(hello.c_str(), hello.size());
SetResult(output);
return true;
}