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

Unified Diff: runtime/vm/safepoint.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/runtime_entry_mips.cc ('k') | runtime/vm/safepoint.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/safepoint.h
diff --git a/runtime/vm/safepoint.h b/runtime/vm/safepoint.h
index 8a48f294d013c1fef87862268d201a78f5be3004..5547ce7ad86d406b5296c9a0d493c66b9403ecab 100644
--- a/runtime/vm/safepoint.h
+++ b/runtime/vm/safepoint.h
@@ -320,8 +320,7 @@ class TransitionNativeToVM : public TransitionSafepointState {
class TransitionToGenerated : public TransitionSafepointState {
public:
explicit TransitionToGenerated(Thread* T)
- : TransitionSafepointState(T),
- execution_state_(T->execution_state()) {
+ : TransitionSafepointState(T), execution_state_(T->execution_state()) {
ASSERT(T == Thread::Current());
ASSERT((execution_state_ == Thread::kThreadInVM) ||
(execution_state_ == Thread::kThreadInNative));
@@ -357,8 +356,8 @@ class TransitionToGenerated : public TransitionSafepointState {
// transition set up.
class TransitionToVM : public TransitionSafepointState {
public:
- explicit TransitionToVM(Thread* T) : TransitionSafepointState(T),
- execution_state_(T->execution_state()) {
+ explicit TransitionToVM(Thread* T)
+ : TransitionSafepointState(T), execution_state_(T->execution_state()) {
ASSERT(T == Thread::Current());
ASSERT((execution_state_ == Thread::kThreadInVM) ||
(execution_state_ == Thread::kThreadInNative));
« no previous file with comments | « runtime/vm/runtime_entry_mips.cc ('k') | runtime/vm/safepoint.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698