| 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
|
|
|