| 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_main.h" | 5 #include "chrome/browser/browser_main.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 #include "chrome/browser/browser_main_win.h" | 30 #include "chrome/browser/browser_main_win.h" |
| 31 #include "chrome/browser/browser_init.h" | 31 #include "chrome/browser/browser_init.h" |
| 32 #include "chrome/browser/browser_prefs.h" | 32 #include "chrome/browser/browser_prefs.h" |
| 33 #include "chrome/browser/browser_process.h" | 33 #include "chrome/browser/browser_process.h" |
| 34 #include "chrome/browser/browser_process_impl.h" | 34 #include "chrome/browser/browser_process_impl.h" |
| 35 #include "chrome/browser/browser_shutdown.h" | 35 #include "chrome/browser/browser_shutdown.h" |
| 36 #include "chrome/browser/chrome_thread.h" | 36 #include "chrome/browser/chrome_thread.h" |
| 37 #include "chrome/browser/dom_ui/chrome_url_data_manager.h" | 37 #include "chrome/browser/dom_ui/chrome_url_data_manager.h" |
| 38 #include "chrome/browser/extensions/extension_protocols.h" | 38 #include "chrome/browser/extensions/extension_protocols.h" |
| 39 #include "chrome/browser/extensions/extensions_service.h" | 39 #include "chrome/browser/extensions/extensions_service.h" |
| 40 #include "chrome/browser/first_run.h" | 40 #include "chrome/browser/first_run/first_run.h" |
| 41 #include "chrome/browser/jankometer.h" | 41 #include "chrome/browser/jankometer.h" |
| 42 #include "chrome/browser/metrics/histogram_synchronizer.h" | 42 #include "chrome/browser/metrics/histogram_synchronizer.h" |
| 43 #include "chrome/browser/metrics/metrics_log.h" | 43 #include "chrome/browser/metrics/metrics_log.h" |
| 44 #include "chrome/browser/metrics/metrics_service.h" | 44 #include "chrome/browser/metrics/metrics_service.h" |
| 45 #include "chrome/browser/net/predictor_api.h" | 45 #include "chrome/browser/net/predictor_api.h" |
| 46 #include "chrome/browser/net/metadata_url_request.h" | 46 #include "chrome/browser/net/metadata_url_request.h" |
| 47 #include "chrome/browser/net/sdch_dictionary_fetcher.h" | 47 #include "chrome/browser/net/sdch_dictionary_fetcher.h" |
| 48 #include "chrome/browser/net/websocket_experiment/websocket_experiment_runner.h" | 48 #include "chrome/browser/net/websocket_experiment/websocket_experiment_runner.h" |
| 49 #include "chrome/browser/plugin_service.h" | 49 #include "chrome/browser/plugin_service.h" |
| 50 #include "chrome/browser/pref_service.h" | 50 #include "chrome/browser/pref_service.h" |
| (...skipping 1214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1265 | 1265 |
| 1266 metrics->Stop(); | 1266 metrics->Stop(); |
| 1267 | 1267 |
| 1268 // browser_shutdown takes care of deleting browser_process, so we need to | 1268 // browser_shutdown takes care of deleting browser_process, so we need to |
| 1269 // release it. | 1269 // release it. |
| 1270 ignore_result(browser_process.release()); | 1270 ignore_result(browser_process.release()); |
| 1271 browser_shutdown::Shutdown(); | 1271 browser_shutdown::Shutdown(); |
| 1272 | 1272 |
| 1273 return result_code; | 1273 return result_code; |
| 1274 } | 1274 } |
| OLD | NEW |