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

Unified Diff: Source/core/workers/WorkerScriptLoaderClient.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/WorkerScriptLoader.h ('k') | Source/core/workers/WorkerThread.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/workers/WorkerScriptLoaderClient.h
diff --git a/Source/core/workers/WorkerScriptLoaderClient.h b/Source/core/workers/WorkerScriptLoaderClient.h
index da545bf90adab039b0b2d6dfb6088ddddfb26b87..1684591e3f981e4902967d35f739327a3c5be0c3 100644
--- a/Source/core/workers/WorkerScriptLoaderClient.h
+++ b/Source/core/workers/WorkerScriptLoaderClient.h
@@ -30,19 +30,19 @@
namespace blink {
- class ResourceResponse;
+class ResourceResponse;
- class WorkerScriptLoaderClient {
- public:
- virtual void didReceiveResponse(unsigned long /*identifier*/, const ResourceResponse&) { }
+class WorkerScriptLoaderClient {
+public:
+ virtual void didReceiveResponse(unsigned long /*identifier*/, const ResourceResponse&) { }
- // FIXME: notifyFinished() is not currently guaranteed to be invoked if used from worker context and the worker shuts down in the middle of an operation.
- // This will cause leaks when we support nested workers.
- virtual void notifyFinished() { }
+ // FIXME: notifyFinished() is not currently guaranteed to be invoked if used from worker context and the worker shuts down in the middle of an operation.
+ // This will cause leaks when we support nested workers.
+ virtual void notifyFinished() { }
- protected:
- virtual ~WorkerScriptLoaderClient() { }
- };
+protected:
+ virtual ~WorkerScriptLoaderClient() { }
+};
} // namespace blink
« no previous file with comments | « Source/core/workers/WorkerScriptLoader.h ('k') | Source/core/workers/WorkerThread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698