| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 | 4 |
| 5 #ifndef IOS_WEB_APP_WEB_MAIN_LOOP_H_ | 5 #ifndef IOS_WEB_APP_WEB_MAIN_LOOP_H_ |
| 6 #define IOS_WEB_APP_WEB_MAIN_LOOP_H_ | 6 #define IOS_WEB_APP_WEB_MAIN_LOOP_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 | 12 |
| 13 namespace base { | 13 namespace base { |
| 14 class CommandLine; | |
| 15 class FilePath; | |
| 16 class MessageLoop; | 14 class MessageLoop; |
| 17 class PowerMonitor; | 15 class PowerMonitor; |
| 18 class SystemMonitor; | 16 class SystemMonitor; |
| 19 } // namespace base | 17 } // namespace base |
| 20 | 18 |
| 21 namespace net { | 19 namespace net { |
| 22 class NetworkChangeNotifier; | 20 class NetworkChangeNotifier; |
| 23 } // namespace net | 21 } // namespace net |
| 24 | 22 |
| 25 namespace web { | 23 namespace web { |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 | 89 |
| 92 // Members initialized in |WebThreadsStarted()| -------------------------- | 90 // Members initialized in |WebThreadsStarted()| -------------------------- |
| 93 std::unique_ptr<CookieNotificationBridge> cookie_notification_bridge_; | 91 std::unique_ptr<CookieNotificationBridge> cookie_notification_bridge_; |
| 94 | 92 |
| 95 DISALLOW_COPY_AND_ASSIGN(WebMainLoop); | 93 DISALLOW_COPY_AND_ASSIGN(WebMainLoop); |
| 96 }; | 94 }; |
| 97 | 95 |
| 98 } // namespace web | 96 } // namespace web |
| 99 | 97 |
| 100 #endif // IOS_WEB_APP_WEB_MAIN_LOOP_H_ | 98 #endif // IOS_WEB_APP_WEB_MAIN_LOOP_H_ |
| OLD | NEW |