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

Unified Diff: third_party/WebKit/Source/platform/heap/Persistent.h

Issue 2940933003: DO NOT SUBMIT results of new clang-format (Closed)
Patch Set: Created 3 years, 6 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
Index: third_party/WebKit/Source/platform/heap/Persistent.h
diff --git a/third_party/WebKit/Source/platform/heap/Persistent.h b/third_party/WebKit/Source/platform/heap/Persistent.h
index 18eb93dca71edf884f58c6ee01c085380b786e48..f36540b3e1dbc7a359cc01374ddb94d24f6f6a8e 100644
--- a/third_party/WebKit/Source/platform/heap/Persistent.h
+++ b/third_party/WebKit/Source/platform/heap/Persistent.h
@@ -249,7 +249,7 @@ class PersistentBase {
ThreadState* state =
ThreadStateFor<ThreadingTrait<T>::kAffinity>::GetState();
DCHECK(state->CheckThread());
- // Persistent handle must be created and destructed in the same thread.
+// Persistent handle must be created and destructed in the same thread.
#if DCHECK_IS_ON()
DCHECK_EQ(state_, state);
#endif
@@ -614,7 +614,7 @@ class PersistentHeapCollectionBase : public Collection {
return;
ThreadState* state = ThreadState::Current();
DCHECK(state->CheckThread());
- // Persistent handle must be created and destructed in the same thread.
+// Persistent handle must be created and destructed in the same thread.
#if DCHECK_IS_ON()
DCHECK_EQ(state_, state);
#endif
@@ -813,6 +813,6 @@ struct BindUnwrapTraits<blink::CrossThreadWeakPersistent<T>> {
return blink::CrossThreadPersistent<T>(wrapped.Get());
}
};
-}
+} // namespace base
#endif // Persistent_h

Powered by Google App Engine
This is Rietveld 408576698