| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/apps/install_chrome_app.h" | 5 #include "chrome/browser/apps/install_chrome_app.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | |
| 8 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/macros.h" |
| 9 #include "base/strings/stringprintf.h" | 9 #include "base/strings/stringprintf.h" |
| 10 #include "chrome/browser/browser_process.h" | 10 #include "chrome/browser/browser_process.h" |
| 11 #include "chrome/browser/extensions/webstore_install_with_prompt.h" | 11 #include "chrome/browser/extensions/webstore_install_with_prompt.h" |
| 12 #include "chrome/browser/extensions/webstore_standalone_installer.h" | 12 #include "chrome/browser/extensions/webstore_standalone_installer.h" |
| 13 #include "chrome/browser/profiles/profile.h" | 13 #include "chrome/browser/profiles/profile.h" |
| 14 #include "chrome/browser/ui/browser.h" | 14 #include "chrome/browser/ui/browser.h" |
| 15 #include "chrome/browser/ui/browser_list.h" | 15 #include "chrome/browser/ui/browser_list.h" |
| 16 #include "chrome/browser/ui/browser_window.h" | 16 #include "chrome/browser/ui/browser_window.h" |
| 17 #include "chrome/common/extensions/webstore_install_result.h" | 17 #include "chrome/common/extensions/webstore_install_result.h" |
| 18 #include "components/crx_file/id_util.h" | 18 #include "components/crx_file/id_util.h" |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 if (installed_extension) | 102 if (installed_extension) |
| 103 return; | 103 return; |
| 104 | 104 |
| 105 WebstoreInstallWithPromptAppsOnly* installer = | 105 WebstoreInstallWithPromptAppsOnly* installer = |
| 106 new WebstoreInstallWithPromptAppsOnly( | 106 new WebstoreInstallWithPromptAppsOnly( |
| 107 app_id, browser->profile(), browser->window()->GetNativeWindow()); | 107 app_id, browser->profile(), browser->window()->GetNativeWindow()); |
| 108 installer->BeginInstall(); | 108 installer->BeginInstall(); |
| 109 } | 109 } |
| 110 | 110 |
| 111 } // namespace install_chrome_app | 111 } // namespace install_chrome_app |
| OLD | NEW |