root/chrome/browser/extensions/api/idltest/idltest_api.cc

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. CopyBinaryValueToIntegerList
  2. RunImpl
  3. RunImpl
  4. RunImpl

// 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;
}

/* [<][>][^][v][top][bottom][index][help] */