| Index: src/shared/ppapi_proxy/proxy_var.h
|
| diff --git a/src/shared/ppapi_proxy/proxy_var.h b/src/shared/ppapi_proxy/proxy_var.h
|
| index e9db6c4eee4771828d23a6a884324651f8a79127..46593f22b46f414966df91bf0600d5eeb3412034 100644
|
| --- a/src/shared/ppapi_proxy/proxy_var.h
|
| +++ b/src/shared/ppapi_proxy/proxy_var.h
|
| @@ -11,14 +11,13 @@
|
|
|
| namespace ppapi_proxy {
|
|
|
| -// Complex PP_Var types (such as strings and objects) have a copy of the
|
| -// variant's contents cached by the proxy. This is done so that PP_Vars can
|
| -// be reference counted, and their contents accessed "locally" by NaCl modules
|
| -// without having to perform a complete round trip to the browser for each
|
| -// such operation.
|
| +// Complex PP_Var types (such as strings) have a copy of the variant's contents
|
| +// cached by the proxy. This is done so that PP_Vars can be reference counted,
|
| +// and their contents accessed "locally" by NaCl modules without having to
|
| +// perform a complete round trip to the browser for each such operation.
|
| //
|
| // Note: this class is intended to be sub-classed to handle specific content
|
| -// types such as strings, objects or arrays.
|
| +// types such as strings, dictionaries, or arrays.
|
| class ProxyVar {
|
| public:
|
| virtual ~ProxyVar() {}
|
|
|