diff options
author | yzshen@chromium.org <yzshen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-09 23:35:08 +0000 |
---|---|---|
committer | yzshen@chromium.org <yzshen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-09 23:35:08 +0000 |
commit | 27b6c41ec30f535792cf61b8594e3cac18aa2baa (patch) | |
tree | 54f1dc447fccd00b622e8ba5389d4c9e8647504a /ppapi/proxy | |
parent | 32c82015b63c9754b4e897036b4fd45c50bb2c51 (diff) | |
download | chromium_src-27b6c41ec30f535792cf61b8594e3cac18aa2baa.zip chromium_src-27b6c41ec30f535792cf61b8594e3cac18aa2baa.tar.gz chromium_src-27b6c41ec30f535792cf61b8594e3cac18aa2baa.tar.bz2 |
Fix line endings (no code change)
TBR=brettw
BUG=None
TEST=None
Review URL: https://chromiumcodereview.appspot.com/9668037
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@125941 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy')
-rw-r--r-- | ppapi/proxy/serialized_var.cc | 6 | ||||
-rw-r--r-- | ppapi/proxy/serialized_var.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/ppapi/proxy/serialized_var.cc b/ppapi/proxy/serialized_var.cc index 7b2a8e3..a5c9e77 100644 --- a/ppapi/proxy/serialized_var.cc +++ b/ppapi/proxy/serialized_var.cc @@ -68,8 +68,8 @@ void SerializedVar::Inner::SetVar(PP_Var var) { var_ = var; } -void SerializedVar::Inner::ForceSetVarValueForTest(PP_Var value) {
- var_ = value;
+void SerializedVar::Inner::ForceSetVarValueForTest(PP_Var value) { + var_ = value; } void SerializedVar::Inner::WriteToMessage(IPC::Message* m) const { @@ -515,7 +515,7 @@ SerializedVarTestConstructor::SerializedVarTestConstructor( inner_->ForceSetVarValueForTest(StringVar::StringToPPVar(str)); } -SerializedVarTestReader::SerializedVarTestReader(const SerializedVar& var)
+SerializedVarTestReader::SerializedVarTestReader(const SerializedVar& var) : SerializedVar(var) { } diff --git a/ppapi/proxy/serialized_var.h b/ppapi/proxy/serialized_var.h index ffcf0da..f7779b3 100644 --- a/ppapi/proxy/serialized_var.h +++ b/ppapi/proxy/serialized_var.h @@ -102,9 +102,9 @@ class PPAPI_PROXY_EXPORT SerializedVar { // See outer class's declarations above. PP_Var GetVar() const; void SetVar(PP_Var var); -
- // For the SerializedVarTestConstructor, this writes the Var value as if
- // it was just received off the wire, without any serialization rules.
+ + // For the SerializedVarTestConstructor, this writes the Var value as if + // it was just received off the wire, without any serialization rules. void ForceSetVarValueForTest(PP_Var value); void WriteToMessage(IPC::Message* m) const; |