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

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

Issue 642013002: Unindent some class declarations in workers/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 | « Source/core/workers/WorkerGlobalScopeProxy.h ('k') | Source/core/workers/WorkerScriptLoader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/workers/WorkerLoaderProxy.h
diff --git a/Source/core/workers/WorkerLoaderProxy.h b/Source/core/workers/WorkerLoaderProxy.h
index 0727a988c08668b1fdf380b8a22eca7b6df85d03..21e5dd4e3f2d178e0324328446cd0951280ff3fb 100644
--- a/Source/core/workers/WorkerLoaderProxy.h
+++ b/Source/core/workers/WorkerLoaderProxy.h
@@ -37,22 +37,22 @@
namespace blink {
- // A proxy to talk to the loader context. Normally, the document on the main thread
- // provides loading services for the subordinate workers. This interface provides 2-way
- // communications to the Document context and back to the worker.
- // Note that in multi-process browsers, the Worker object context and the Document
- // context can be distinct.
- class WorkerLoaderProxy {
- public:
- virtual ~WorkerLoaderProxy() { }
-
- // Posts a task to the thread which runs the loading code (normally, the main thread).
- virtual void postTaskToLoader(PassOwnPtr<ExecutionContextTask>) = 0;
-
- // Posts callbacks from loading code to the WorkerGlobalScope.
- // Returns true if the task was posted successfully.
- virtual bool postTaskToWorkerGlobalScope(PassOwnPtr<ExecutionContextTask>) = 0;
- };
+// A proxy to talk to the loader context. Normally, the document on the main thread
+// provides loading services for the subordinate workers. This interface provides 2-way
+// communications to the Document context and back to the worker.
+// Note that in multi-process browsers, the Worker object context and the Document
+// context can be distinct.
+class WorkerLoaderProxy {
+public:
+ virtual ~WorkerLoaderProxy() { }
+
+ // Posts a task to the thread which runs the loading code (normally, the main thread).
+ virtual void postTaskToLoader(PassOwnPtr<ExecutionContextTask>) = 0;
+
+ // Posts callbacks from loading code to the WorkerGlobalScope.
+ // Returns true if the task was posted successfully.
+ virtual bool postTaskToWorkerGlobalScope(PassOwnPtr<ExecutionContextTask>) = 0;
+};
} // namespace blink
« no previous file with comments | « Source/core/workers/WorkerGlobalScopeProxy.h ('k') | Source/core/workers/WorkerScriptLoader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698