| Index: content/public/renderer/v8_value_converter.h
|
| diff --git a/content/public/renderer/v8_value_converter.h b/content/public/renderer/v8_value_converter.h
|
| index e8fad2adf17373d75f8e6ebea43f69a4d5eea756..6e785c143a070ea4c0d5e5a639380a128b178efc 100644
|
| --- a/content/public/renderer/v8_value_converter.h
|
| +++ b/content/public/renderer/v8_value_converter.h
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| +// 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.
|
|
|
| @@ -18,8 +18,10 @@ namespace content {
|
| // values (from base/values.h). Lists and dictionaries are converted
|
| // recursively.
|
| //
|
| -// Only the JSON types (null, boolean, string, number, array, and object) are
|
| -// supported.
|
| +// The JSON types (null, boolean, string, number, array, and object) as well as
|
| +// binary values are supported. For binary values, we convert to WebKit
|
| +// ArrayBuffers, and support converting from an ArrayBuffer or any of the
|
| +// ArrayBufferView subclasses (Uint8Array, etc.).
|
| class CONTENT_EXPORT V8ValueConverter {
|
| public:
|
| static V8ValueConverter* create();
|
|
|