Upstream version 7.35.144.0
[platform/framework/web/crosswalk.git] / src / chrome / renderer / static_v8_external_string_resource.cc
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/renderer/static_v8_external_string_resource.h"
6
7 StaticV8ExternalAsciiStringResource::StaticV8ExternalAsciiStringResource(
8     const base::StringPiece& buffer)
9     : buffer_(buffer) {
10 }
11
12 StaticV8ExternalAsciiStringResource::~StaticV8ExternalAsciiStringResource() {
13 }
14
15 const char* StaticV8ExternalAsciiStringResource::data() const {
16   return buffer_.data();
17 }
18
19 size_t StaticV8ExternalAsciiStringResource::length() const {
20   return buffer_.length();
21 }