blob: da026505b5344248e46a082bcb0e101a2aacef88 [file] [log] [blame]
// Copyright 2014 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.
#ifndef EXTENSIONS_RENDERER_STATIC_V8_EXTERNAL_ASCII_STRING_RESOURCE_H_
#define EXTENSIONS_RENDERER_STATIC_V8_EXTERNAL_ASCII_STRING_RESOURCE_H_
#include "base/compiler_specific.h"
#include "base/strings/string_piece.h"
#include "v8/include/v8.h"
namespace extensions {
// A very simple implementation of v8::ExternalAsciiStringResource that just
// wraps a buffer. The buffer must outlive the v8 runtime instance this resource
// is used in.
class StaticV8ExternalAsciiStringResource
: public v8::String::ExternalAsciiStringResource {
public:
explicit StaticV8ExternalAsciiStringResource(const base::StringPiece& buffer);
virtual ~StaticV8ExternalAsciiStringResource();
virtual const char* data() const OVERRIDE;
virtual size_t length() const OVERRIDE;
private:
base::StringPiece buffer_;
};
} // namespace extensions
#endif // EXTENSIONS_RENDERER_STATIC_V8_EXTERNAL_ASCII_STRING_RESOURCE_H_