| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 // Comment-only change. |
| 4 | 5 |
| 5 #ifndef MOJO_PUBLIC_CPP_SYSTEM_WATCHER_H_ | 6 #ifndef MOJO_PUBLIC_CPP_SYSTEM_WATCHER_H_ |
| 6 #define MOJO_PUBLIC_CPP_SYSTEM_WATCHER_H_ | 7 #define MOJO_PUBLIC_CPP_SYSTEM_WATCHER_H_ |
| 7 | 8 |
| 8 #include "base/callback.h" | 9 #include "base/callback.h" |
| 9 #include "base/macros.h" | 10 #include "base/macros.h" |
| 10 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 11 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 12 #include "base/single_thread_task_runner.h" | 13 #include "base/single_thread_task_runner.h" |
| 13 #include "base/threading/thread_checker.h" | 14 #include "base/threading/thread_checker.h" |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 ReadyCallback callback_; | 106 ReadyCallback callback_; |
| 106 | 107 |
| 107 base::WeakPtrFactory<Watcher> weak_factory_; | 108 base::WeakPtrFactory<Watcher> weak_factory_; |
| 108 | 109 |
| 109 DISALLOW_COPY_AND_ASSIGN(Watcher); | 110 DISALLOW_COPY_AND_ASSIGN(Watcher); |
| 110 }; | 111 }; |
| 111 | 112 |
| 112 } // namespace mojo | 113 } // namespace mojo |
| 113 | 114 |
| 114 #endif // MOJO_PUBLIC_CPP_SYSTEM_WATCHER_H_ | 115 #endif // MOJO_PUBLIC_CPP_SYSTEM_WATCHER_H_ |
| OLD | NEW |