diff options
Diffstat (limited to 'chrome/plugin/plugin_thread.h')
-rw-r--r-- | chrome/plugin/plugin_thread.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/chrome/plugin/plugin_thread.h b/chrome/plugin/plugin_thread.h index df4b67a..46da0e4 100644 --- a/chrome/plugin/plugin_thread.h +++ b/chrome/plugin/plugin_thread.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef CHROME_PLUGIN_PLUGIN_THREAD_H__ -#define CHROME_PLUGIN_PLUGIN_THREAD_H__ +#ifndef CHROME_PLUGIN_PLUGIN_THREAD_H_ +#define CHROME_PLUGIN_PLUGIN_THREAD_H_ #include "base/thread.h" #include "chrome/common/ipc_sync_channel.h" @@ -35,7 +35,9 @@ class PluginThread : public IPC::Channel::Listener, static PluginThread* GetPluginThread() { return plugin_thread_; } // Returns the one true dispatcher. - ResourceDispatcher* resource_dispatcher() { return resource_dispatcher_.get(); } + ResourceDispatcher* resource_dispatcher() { + return resource_dispatcher_.get(); + } private: // Thread implementation: @@ -71,5 +73,4 @@ class PluginThread : public IPC::Channel::Listener, DISALLOW_EVIL_CONSTRUCTORS(PluginThread); }; -#endif // CHROME_PLUGIN_PLUGIN_THREAD_H__ - +#endif // CHROME_PLUGIN_PLUGIN_THREAD_H_ |