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

Unified Diff: runtime/vm/os_thread_win.h

Issue 2481873005: clang-format runtime/vm (Closed)
Patch Set: Merge Created 4 years, 1 month 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 | « runtime/vm/os_thread_macos.cc ('k') | runtime/vm/os_thread_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/os_thread_win.h
diff --git a/runtime/vm/os_thread_win.h b/runtime/vm/os_thread_win.h
index 714d175acb9e47888ea84a7d8159cda4d7678300..36205705ca43c5ee103049a59f2919210c8dab44 100644
--- a/runtime/vm/os_thread_win.h
+++ b/runtime/vm/os_thread_win.h
@@ -122,24 +122,18 @@ class MonitorData {
};
-typedef void (*ThreadDestructor) (void* parameter);
+typedef void (*ThreadDestructor)(void* parameter);
class ThreadLocalEntry {
public:
ThreadLocalEntry(ThreadLocalKey key, ThreadDestructor destructor)
- : key_(key),
- destructor_(destructor) {
- }
+ : key_(key), destructor_(destructor) {}
- ThreadLocalKey key() const {
- return key_;
- }
+ ThreadLocalKey key() const { return key_; }
- ThreadDestructor destructor() const {
- return destructor_;
- }
+ ThreadDestructor destructor() const { return destructor_; }
private:
ThreadLocalKey key_;
@@ -149,7 +143,7 @@ class ThreadLocalEntry {
};
-template<typename T>
+template <typename T>
class MallocGrowableArray;
« no previous file with comments | « runtime/vm/os_thread_macos.cc ('k') | runtime/vm/os_thread_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698