| Index: base/threading/thread_restrictions.cc
 | 
| diff --git a/base/threading/thread_restrictions.cc b/base/threading/thread_restrictions.cc
 | 
| index 871f2dc874c3faabce91e0d85f29075548715fd3..00306c5ae7d6c8ea17fcc2170b08b11c15d257ce 100644
 | 
| --- a/base/threading/thread_restrictions.cc
 | 
| +++ b/base/threading/thread_restrictions.cc
 | 
| @@ -23,7 +23,7 @@ LazyInstance<ThreadLocalBoolean>::Leaky
 | 
|  LazyInstance<ThreadLocalBoolean>::Leaky
 | 
|      g_wait_disallowed = LAZY_INSTANCE_INITIALIZER;
 | 
|  
 | 
| -}  // anonymous namespace
 | 
| +}  // namespace
 | 
|  
 | 
|  // static
 | 
|  bool ThreadRestrictions::SetIOAllowed(bool allowed) {
 | 
| @@ -69,7 +69,7 @@ void ThreadRestrictions::DisallowWaiting() {
 | 
|  // static
 | 
|  void ThreadRestrictions::AssertWaitAllowed() {
 | 
|    if (g_wait_disallowed.Get().Get()) {
 | 
| -    LOG(FATAL) << "Waiting is not allowed to be used on this thread to prevent"
 | 
| +    LOG(FATAL) << "Waiting is not allowed to be used on this thread to prevent "
 | 
|                 << "jank and deadlock.";
 | 
|    }
 | 
|  }
 | 
| 
 |