| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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/component_updater/pepper_flash_component_installer.h" | 5 #include "chrome/browser/component_updater/pepper_flash_component_installer.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 #include "components/component_updater/default_component_installer.h" | 38 #include "components/component_updater/default_component_installer.h" |
| 39 #include "components/update_client/update_client.h" | 39 #include "components/update_client/update_client.h" |
| 40 #include "components/update_client/update_client_errors.h" | 40 #include "components/update_client/update_client_errors.h" |
| 41 #include "content/public/browser/browser_thread.h" | 41 #include "content/public/browser/browser_thread.h" |
| 42 #include "content/public/browser/plugin_service.h" | 42 #include "content/public/browser/plugin_service.h" |
| 43 #include "content/public/common/content_constants.h" | 43 #include "content/public/common/content_constants.h" |
| 44 #include "content/public/common/pepper_plugin_info.h" | 44 #include "content/public/common/pepper_plugin_info.h" |
| 45 #include "ppapi/shared_impl/ppapi_permissions.h" | 45 #include "ppapi/shared_impl/ppapi_permissions.h" |
| 46 | 46 |
| 47 #if defined(OS_CHROMEOS) | 47 #if defined(OS_CHROMEOS) |
| 48 #include "base/feature_list.h" |
| 48 #include "chrome/browser/chromeos/settings/cros_settings.h" | 49 #include "chrome/browser/chromeos/settings/cros_settings.h" |
| 49 #include "chrome/browser/ui/ash/system_tray_delegate_chromeos.h" | 50 #include "chrome/browser/ui/ash/system_tray_delegate_chromeos.h" |
| 50 #include "chrome/common/chrome_features.h" | |
| 51 #include "chromeos/dbus/dbus_method_call_status.h" | 51 #include "chromeos/dbus/dbus_method_call_status.h" |
| 52 #include "chromeos/dbus/dbus_thread_manager.h" | 52 #include "chromeos/dbus/dbus_thread_manager.h" |
| 53 #include "chromeos/dbus/image_loader_client.h" | 53 #include "chromeos/dbus/image_loader_client.h" |
| 54 #include "content/public/browser/browser_thread.h" | 54 #include "content/public/browser/browser_thread.h" |
| 55 #elif defined(OS_LINUX) | 55 #elif defined(OS_LINUX) |
| 56 #include "chrome/common/component_flash_hint_file_linux.h" | 56 #include "chrome/common/component_flash_hint_file_linux.h" |
| 57 #endif // defined(OS_CHROMEOS) | 57 #endif // defined(OS_CHROMEOS) |
| 58 | 58 |
| 59 using content::BrowserThread; | 59 using content::BrowserThread; |
| 60 using content::PluginService; | 60 using content::PluginService; |
| (...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 std::unique_ptr<ComponentInstallerTraits> traits( | 373 std::unique_ptr<ComponentInstallerTraits> traits( |
| 374 new FlashComponentInstallerTraits); | 374 new FlashComponentInstallerTraits); |
| 375 // |cus| will take ownership of |installer| during installer->Register(cus). | 375 // |cus| will take ownership of |installer| during installer->Register(cus). |
| 376 DefaultComponentInstaller* installer = | 376 DefaultComponentInstaller* installer = |
| 377 new DefaultComponentInstaller(std::move(traits)); | 377 new DefaultComponentInstaller(std::move(traits)); |
| 378 installer->Register(cus, base::Closure()); | 378 installer->Register(cus, base::Closure()); |
| 379 #endif // defined(GOOGLE_CHROME_BUILD) | 379 #endif // defined(GOOGLE_CHROME_BUILD) |
| 380 } | 380 } |
| 381 | 381 |
| 382 } // namespace component_updater | 382 } // namespace component_updater |
| OLD | NEW |