Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6098)

Unified Diff: Source/core/workers/SharedWorkerGlobalScope.h

Issue 407493005: DevTools: fix indentation in headers (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/core/workers/WorkerMessagingProxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/workers/SharedWorkerGlobalScope.h
diff --git a/Source/core/workers/SharedWorkerGlobalScope.h b/Source/core/workers/SharedWorkerGlobalScope.h
index 2672224e0cdc92020a37b3870c82219f05346899..9d1c6d969f384d95d1cacca65edc7f03025467b0 100644
--- a/Source/core/workers/SharedWorkerGlobalScope.h
+++ b/Source/core/workers/SharedWorkerGlobalScope.h
@@ -38,36 +38,36 @@
namespace WebCore {
- class MessageEvent;
- class SharedWorkerThread;
+class MessageEvent;
+class SharedWorkerThread;
- class SharedWorkerGlobalScope FINAL : public WorkerGlobalScope {
- public:
- typedef WorkerGlobalScope Base;
- static PassRefPtrWillBeRawPtr<SharedWorkerGlobalScope> create(const String& name, SharedWorkerThread*, PassOwnPtrWillBeRawPtr<WorkerThreadStartupData>);
- virtual ~SharedWorkerGlobalScope();
+class SharedWorkerGlobalScope FINAL : public WorkerGlobalScope {
+public:
+ typedef WorkerGlobalScope Base;
+ static PassRefPtrWillBeRawPtr<SharedWorkerGlobalScope> create(const String& name, SharedWorkerThread*, PassOwnPtrWillBeRawPtr<WorkerThreadStartupData>);
+ virtual ~SharedWorkerGlobalScope();
- virtual bool isSharedWorkerGlobalScope() const OVERRIDE { return true; }
+ virtual bool isSharedWorkerGlobalScope() const OVERRIDE { return true; }
- // EventTarget
- virtual const AtomicString& interfaceName() const OVERRIDE;
+ // EventTarget
+ virtual const AtomicString& interfaceName() const OVERRIDE;
- // Setters/Getters for attributes in SharedWorkerGlobalScope.idl
- DEFINE_ATTRIBUTE_EVENT_LISTENER(connect);
- String name() const { return m_name; }
+ // Setters/Getters for attributes in SharedWorkerGlobalScope.idl
+ DEFINE_ATTRIBUTE_EVENT_LISTENER(connect);
+ String name() const { return m_name; }
- SharedWorkerThread* thread();
+ SharedWorkerThread* thread();
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) OVERRIDE;
- private:
- SharedWorkerGlobalScope(const String& name, const KURL&, const String& userAgent, SharedWorkerThread*, PassOwnPtrWillBeRawPtr<WorkerClients>);
- virtual void logExceptionToConsole(const String& errorMessage, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtrWillBeRawPtr<ScriptCallStack>) OVERRIDE;
+private:
+ SharedWorkerGlobalScope(const String& name, const KURL&, const String& userAgent, SharedWorkerThread*, PassOwnPtrWillBeRawPtr<WorkerClients>);
+ virtual void logExceptionToConsole(const String& errorMessage, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtrWillBeRawPtr<ScriptCallStack>) OVERRIDE;
- String m_name;
- };
+ String m_name;
+};
- PassRefPtrWillBeRawPtr<MessageEvent> createConnectEvent(PassRefPtrWillBeRawPtr<MessagePort>);
+PassRefPtrWillBeRawPtr<MessageEvent> createConnectEvent(PassRefPtrWillBeRawPtr<MessagePort>);
} // namespace WebCore
« no previous file with comments | « no previous file | Source/core/workers/WorkerMessagingProxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698