| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #include "chrome/browser/browser_shutdown.h" | 5 #include "chrome/browser/browser_shutdown.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "app/resource_bundle.h" | 9 #include "app/resource_bundle.h" |
| 10 #include "base/file_path.h" | 10 #include "base/file_path.h" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 #include "chrome/browser/metrics/metrics_service.h" | 24 #include "chrome/browser/metrics/metrics_service.h" |
| 25 #include "chrome/browser/plugin_process_host.h" | 25 #include "chrome/browser/plugin_process_host.h" |
| 26 #include "chrome/browser/pref_service.h" | 26 #include "chrome/browser/pref_service.h" |
| 27 #include "chrome/browser/renderer_host/render_process_host.h" | 27 #include "chrome/browser/renderer_host/render_process_host.h" |
| 28 #include "chrome/browser/renderer_host/render_view_host.h" | 28 #include "chrome/browser/renderer_host/render_view_host.h" |
| 29 #include "chrome/browser/renderer_host/render_widget_host.h" | 29 #include "chrome/browser/renderer_host/render_widget_host.h" |
| 30 #include "chrome/common/chrome_paths.h" | 30 #include "chrome/common/chrome_paths.h" |
| 31 #include "chrome/common/chrome_switches.h" | 31 #include "chrome/common/chrome_switches.h" |
| 32 #include "chrome/common/pref_names.h" | 32 #include "chrome/common/pref_names.h" |
| 33 #include "chrome/common/chrome_plugin_lib.h" | 33 #include "chrome/common/chrome_plugin_lib.h" |
| 34 #include "net/dns_global.h" | 34 #include "net/predictor_api.h" |
| 35 | 35 |
| 36 #if defined(OS_WIN) | 36 #if defined(OS_WIN) |
| 37 #include "chrome/browser/rlz/rlz.h" | 37 #include "chrome/browser/rlz/rlz.h" |
| 38 #endif | 38 #endif |
| 39 | 39 |
| 40 using base::Time; | 40 using base::Time; |
| 41 using base::TimeDelta; | 41 using base::TimeDelta; |
| 42 | 42 |
| 43 namespace browser_shutdown { | 43 namespace browser_shutdown { |
| 44 | 44 |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 void SetTryingToQuit(bool quitting) { | 257 void SetTryingToQuit(bool quitting) { |
| 258 g_trying_to_quit = quitting; | 258 g_trying_to_quit = quitting; |
| 259 } | 259 } |
| 260 | 260 |
| 261 bool IsTryingToQuit() { | 261 bool IsTryingToQuit() { |
| 262 return g_trying_to_quit; | 262 return g_trying_to_quit; |
| 263 } | 263 } |
| 264 #endif | 264 #endif |
| 265 | 265 |
| 266 } // namespace browser_shutdown | 266 } // namespace browser_shutdown |
| OLD | NEW |