| Index: ppapi/shared_impl/resource_var.cc
|
| diff --git a/ppapi/shared_impl/resource_var.cc b/ppapi/shared_impl/resource_var.cc
|
| index 1260843a28aa73100a4674c118273cf73d229342..40d9e356b2838462dc06b08841bf8c441ba154e2 100644
|
| --- a/ppapi/shared_impl/resource_var.cc
|
| +++ b/ppapi/shared_impl/resource_var.cc
|
| @@ -9,25 +9,15 @@
|
|
|
| namespace ppapi {
|
|
|
| -int ResourceVar::GetPendingRendererHostId() const {
|
| - return 0;
|
| -}
|
| +int ResourceVar::GetPendingRendererHostId() const { return 0; }
|
|
|
| -int ResourceVar::GetPendingBrowserHostId() const {
|
| - return 0;
|
| -}
|
| +int ResourceVar::GetPendingBrowserHostId() const { return 0; }
|
|
|
| -const IPC::Message* ResourceVar::GetCreationMessage() const {
|
| - return NULL;
|
| -}
|
| +const IPC::Message* ResourceVar::GetCreationMessage() const { return NULL; }
|
|
|
| -ResourceVar* ResourceVar::AsResourceVar() {
|
| - return this;
|
| -}
|
| +ResourceVar* ResourceVar::AsResourceVar() { return this; }
|
|
|
| -PP_VarType ResourceVar::GetType() const {
|
| - return PP_VARTYPE_RESOURCE;
|
| -}
|
| +PP_VarType ResourceVar::GetType() const { return PP_VARTYPE_RESOURCE; }
|
|
|
| // static
|
| ResourceVar* ResourceVar::FromPPVar(PP_Var var) {
|
|
|