| 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 #include "chrome/browser/browser_process_impl.h" | 5 #include "chrome/browser/browser_process_impl.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 | 113 |
| 114 #if defined(USE_AURA) | 114 #if defined(USE_AURA) |
| 115 #include "ui/aura/env.h" | 115 #include "ui/aura/env.h" |
| 116 #endif | 116 #endif |
| 117 | 117 |
| 118 #if defined(OS_CHROMEOS) | 118 #if defined(OS_CHROMEOS) |
| 119 #include "chrome/browser/chromeos/memory/oom_priority_manager.h" | 119 #include "chrome/browser/chromeos/memory/oom_priority_manager.h" |
| 120 #endif // defined(OS_CHROMEOS) | 120 #endif // defined(OS_CHROMEOS) |
| 121 | 121 |
| 122 #if defined(ENABLE_PLUGIN_INSTALLATION) | 122 #if defined(ENABLE_PLUGIN_INSTALLATION) |
| 123 #include "chrome/browser/web_resource/plugins_resource_service.h" | 123 #include "chrome/browser/plugins/plugins_resource_service.h" |
| 124 #endif | 124 #endif |
| 125 | 125 |
| 126 #if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS) | 126 #if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS) |
| 127 // How often to check if the persistent instance of Chrome needs to restart | 127 // How often to check if the persistent instance of Chrome needs to restart |
| 128 // to install an update. | 128 // to install an update. |
| 129 static const int kUpdateCheckIntervalHours = 6; | 129 static const int kUpdateCheckIntervalHours = 6; |
| 130 #endif | 130 #endif |
| 131 | 131 |
| 132 #if defined(OS_WIN) | 132 #if defined(OS_WIN) |
| 133 // Attest to the fact that the call to the file thread to save preferences has | 133 // Attest to the fact that the call to the file thread to save preferences has |
| (...skipping 724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 858 if (PathService::Get(chrome::DIR_USER_DATA, &user_data_dir)) | 858 if (PathService::Get(chrome::DIR_USER_DATA, &user_data_dir)) |
| 859 plugin_service->AddExtraPluginDir(user_data_dir.Append("Plugins")); | 859 plugin_service->AddExtraPluginDir(user_data_dir.Append("Plugins")); |
| 860 #endif | 860 #endif |
| 861 | 861 |
| 862 // Triggers initialization of the singleton instance on UI thread. | 862 // Triggers initialization of the singleton instance on UI thread. |
| 863 PluginFinder::GetInstance()->Init(); | 863 PluginFinder::GetInstance()->Init(); |
| 864 | 864 |
| 865 #if defined(ENABLE_PLUGIN_INSTALLATION) | 865 #if defined(ENABLE_PLUGIN_INSTALLATION) |
| 866 DCHECK(!plugins_resource_service_.get()); | 866 DCHECK(!plugins_resource_service_.get()); |
| 867 plugins_resource_service_ = new PluginsResourceService(local_state()); | 867 plugins_resource_service_ = new PluginsResourceService(local_state()); |
| 868 plugins_resource_service_->StartAfterDelay(); | 868 plugins_resource_service_->Init(); |
| 869 #endif | 869 #endif |
| 870 #endif // defined(ENABLE_PLUGINS) | 870 #endif // defined(ENABLE_PLUGINS) |
| 871 | 871 |
| 872 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); | 872 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); |
| 873 if (!command_line.HasSwitch(switches::kDisableWebResources)) { | 873 if (!command_line.HasSwitch(switches::kDisableWebResources)) { |
| 874 DCHECK(!promo_resource_service_.get()); | 874 DCHECK(!promo_resource_service_.get()); |
| 875 promo_resource_service_ = new PromoResourceService; | 875 promo_resource_service_ = new PromoResourceService; |
| 876 promo_resource_service_->StartAfterDelay(); | 876 promo_resource_service_->StartAfterDelay(); |
| 877 } | 877 } |
| 878 | 878 |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1031 } | 1031 } |
| 1032 | 1032 |
| 1033 void BrowserProcessImpl::OnAutoupdateTimer() { | 1033 void BrowserProcessImpl::OnAutoupdateTimer() { |
| 1034 if (CanAutorestartForUpdate()) { | 1034 if (CanAutorestartForUpdate()) { |
| 1035 DLOG(WARNING) << "Detected update. Restarting browser."; | 1035 DLOG(WARNING) << "Detected update. Restarting browser."; |
| 1036 RestartBackgroundInstance(); | 1036 RestartBackgroundInstance(); |
| 1037 } | 1037 } |
| 1038 } | 1038 } |
| 1039 | 1039 |
| 1040 #endif // (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS) | 1040 #endif // (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS) |
| OLD | NEW |