| 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 24 matching lines...) Expand all Loading... |
| 35 #include "chrome/browser/browser_process_impl.h" | 35 #include "chrome/browser/browser_process_impl.h" |
| 36 #include "chrome/browser/browser_shutdown.h" | 36 #include "chrome/browser/browser_shutdown.h" |
| 37 #include "chrome/browser/chrome_thread.h" | 37 #include "chrome/browser/chrome_thread.h" |
| 38 #include "chrome/browser/dom_ui/chrome_url_data_manager.h" | 38 #include "chrome/browser/dom_ui/chrome_url_data_manager.h" |
| 39 #include "chrome/browser/extensions/extension_protocols.h" | 39 #include "chrome/browser/extensions/extension_protocols.h" |
| 40 #include "chrome/browser/extensions/extensions_service.h" | 40 #include "chrome/browser/extensions/extensions_service.h" |
| 41 #include "chrome/browser/first_run.h" | 41 #include "chrome/browser/first_run.h" |
| 42 #include "chrome/browser/jankometer.h" | 42 #include "chrome/browser/jankometer.h" |
| 43 #include "chrome/browser/metrics/histogram_synchronizer.h" | 43 #include "chrome/browser/metrics/histogram_synchronizer.h" |
| 44 #include "chrome/browser/metrics/metrics_service.h" | 44 #include "chrome/browser/metrics/metrics_service.h" |
| 45 #include "chrome/browser/net/dns_global.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" |
| 51 #include "chrome/browser/pref_value_store.h" | 51 #include "chrome/browser/pref_value_store.h" |
| 52 #include "chrome/browser/process_singleton.h" | 52 #include "chrome/browser/process_singleton.h" |
| 53 #include "chrome/browser/profile.h" | 53 #include "chrome/browser/profile.h" |
| 54 #include "chrome/browser/profile_manager.h" | 54 #include "chrome/browser/profile_manager.h" |
| 55 #include "chrome/browser/renderer_host/resource_dispatcher_host.h" | 55 #include "chrome/browser/renderer_host/resource_dispatcher_host.h" |
| (...skipping 1390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1446 | 1446 |
| 1447 metrics->Stop(); | 1447 metrics->Stop(); |
| 1448 | 1448 |
| 1449 // browser_shutdown takes care of deleting browser_process, so we need to | 1449 // browser_shutdown takes care of deleting browser_process, so we need to |
| 1450 // release it. | 1450 // release it. |
| 1451 ignore_result(browser_process.release()); | 1451 ignore_result(browser_process.release()); |
| 1452 browser_shutdown::Shutdown(); | 1452 browser_shutdown::Shutdown(); |
| 1453 | 1453 |
| 1454 return result_code; | 1454 return result_code; |
| 1455 } | 1455 } |
| OLD | NEW |