| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // This is a small utility that watches for and logs network changes. | 5 // This is a small utility that watches for and logs network changes. |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/at_exit.h" | 9 #include "base/at_exit.h" |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 | 127 |
| 128 } // namespace | 128 } // namespace |
| 129 | 129 |
| 130 int main(int argc, char* argv[]) { | 130 int main(int argc, char* argv[]) { |
| 131 #if defined(OS_MACOSX) | 131 #if defined(OS_MACOSX) |
| 132 base::mac::ScopedNSAutoreleasePool pool; | 132 base::mac::ScopedNSAutoreleasePool pool; |
| 133 #endif | 133 #endif |
| 134 #if (defined(OS_LINUX) || defined(OS_OPENBSD)) && !defined(OS_CHROMEOS) | 134 #if (defined(OS_LINUX) || defined(OS_OPENBSD)) && !defined(OS_CHROMEOS) |
| 135 // Needed so ProxyConfigServiceLinux can use gconf. | 135 // Needed so ProxyConfigServiceLinux can use gconf. |
| 136 // Normally handled by BrowserMainLoop::InitializeToolkit(). | 136 // Normally handled by BrowserMainLoop::InitializeToolkit(). |
| 137 // From glib version 2.36 onwards, g_type_init is implicitly called and it is | |
| 138 // deprecated. | |
| 139 #pragma GCC diagnostic push | |
| 140 #pragma GCC diagnostic ignored "-Wdeprecated-declarations" | |
| 141 g_type_init(); | 137 g_type_init(); |
| 142 #pragma GCC diagnostic pop | |
| 143 #endif | 138 #endif |
| 144 base::AtExitManager exit_manager; | 139 base::AtExitManager exit_manager; |
| 145 CommandLine::Init(argc, argv); | 140 CommandLine::Init(argc, argv); |
| 146 logging::InitLogging( | 141 logging::InitLogging( |
| 147 NULL, | 142 NULL, |
| 148 logging::LOG_ONLY_TO_SYSTEM_DEBUG_LOG, | 143 logging::LOG_ONLY_TO_SYSTEM_DEBUG_LOG, |
| 149 logging::LOCK_LOG_FILE, | 144 logging::LOCK_LOG_FILE, |
| 150 logging::DELETE_OLD_LOG_FILE, | 145 logging::DELETE_OLD_LOG_FILE, |
| 151 logging::DISABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS); | 146 logging::DISABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS); |
| 152 | 147 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 proxy_config_service->RemoveObserver(&net_watcher); | 188 proxy_config_service->RemoveObserver(&net_watcher); |
| 194 | 189 |
| 195 // Uses |network_change_notifier|. | 190 // Uses |network_change_notifier|. |
| 196 net::NetworkChangeNotifier::RemoveDNSObserver(&net_watcher); | 191 net::NetworkChangeNotifier::RemoveDNSObserver(&net_watcher); |
| 197 net::NetworkChangeNotifier::RemoveConnectionTypeObserver(&net_watcher); | 192 net::NetworkChangeNotifier::RemoveConnectionTypeObserver(&net_watcher); |
| 198 net::NetworkChangeNotifier::RemoveIPAddressObserver(&net_watcher); | 193 net::NetworkChangeNotifier::RemoveIPAddressObserver(&net_watcher); |
| 199 net::NetworkChangeNotifier::RemoveNetworkChangeObserver(&net_watcher); | 194 net::NetworkChangeNotifier::RemoveNetworkChangeObserver(&net_watcher); |
| 200 | 195 |
| 201 return 0; | 196 return 0; |
| 202 } | 197 } |
| OLD | NEW |