| Index: ppapi/shared_impl/ppapi_globals.cc
|
| diff --git a/ppapi/shared_impl/ppapi_globals.cc b/ppapi/shared_impl/ppapi_globals.cc
|
| index f652f157565fcf084351eb6cdd0e365dd8f4e5da..3e985cf226f11965784a3e3a07bd5595d56dd0bf 100644
|
| --- a/ppapi/shared_impl/ppapi_globals.cc
|
| +++ b/ppapi/shared_impl/ppapi_globals.cc
|
| @@ -36,7 +36,7 @@ PpapiGlobals::~PpapiGlobals() {
|
| ppapi_globals = NULL;
|
| }
|
|
|
| -//Static Getter for the global singleton.
|
| +// Static Getter for the global singleton.
|
| PpapiGlobals* PpapiGlobals::Get() {
|
| if (ppapi_globals)
|
| return ppapi_globals;
|
| @@ -61,16 +61,11 @@ void PpapiGlobals::ResetMainThreadMessageLoopForTesting() {
|
| main_loop_proxy_ = base::MessageLoopProxy::current();
|
| }
|
|
|
| -bool PpapiGlobals::IsHostGlobals() const {
|
| - return false;
|
| -}
|
| +bool PpapiGlobals::IsHostGlobals() const { return false; }
|
|
|
| -bool PpapiGlobals::IsPluginGlobals() const {
|
| - return false;
|
| -}
|
| +bool PpapiGlobals::IsPluginGlobals() const { return false; }
|
|
|
| -void PpapiGlobals::MarkPluginIsActive() {
|
| -}
|
| +void PpapiGlobals::MarkPluginIsActive() {}
|
|
|
| // static
|
| PpapiGlobals* PpapiGlobals::GetThreadLocalPointer() {
|
|
|