Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: chrome/browser/chromeos/extensions/file_manager_util.cc

Issue 10409023: Remove extension application launch code from Browser (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 #include "chrome/browser/chromeos/extensions/file_manager_util.h" 4 #include "chrome/browser/chromeos/extensions/file_manager_util.h"
5 5
6 #include "base/bind.h" 6 #include "base/bind.h"
7 #include "base/file_util.h" 7 #include "base/file_util.h"
8 #include "base/json/json_reader.h" 8 #include "base/json/json_reader.h"
9 #include "base/json/json_writer.h" 9 #include "base/json/json_writer.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/metrics/histogram.h" 11 #include "base/metrics/histogram.h"
12 #include "base/path_service.h" 12 #include "base/path_service.h"
13 #include "base/string_util.h" 13 #include "base/string_util.h"
14 #include "base/utf_string_conversions.h" 14 #include "base/utf_string_conversions.h"
15 #include "base/values.h" 15 #include "base/values.h"
16 #include "chrome/browser/chromeos/extensions/file_handler_util.h" 16 #include "chrome/browser/chromeos/extensions/file_handler_util.h"
17 #include "chrome/browser/chromeos/gdata/gdata.pb.h" 17 #include "chrome/browser/chromeos/gdata/gdata.pb.h"
18 #include "chrome/browser/chromeos/gdata/gdata_operation_registry.h" 18 #include "chrome/browser/chromeos/gdata/gdata_operation_registry.h"
19 #include "chrome/browser/chromeos/gdata/gdata_system_service.h" 19 #include "chrome/browser/chromeos/gdata/gdata_system_service.h"
20 #include "chrome/browser/chromeos/gdata/gdata_util.h" 20 #include "chrome/browser/chromeos/gdata/gdata_util.h"
21 #include "chrome/browser/extensions/crx_installer.h" 21 #include "chrome/browser/extensions/crx_installer.h"
22 #include "chrome/browser/extensions/extension_install_ui.h" 22 #include "chrome/browser/extensions/extension_install_ui.h"
23 #include "chrome/browser/extensions/extension_service.h" 23 #include "chrome/browser/extensions/extension_service.h"
24 #include "chrome/browser/plugin_prefs.h" 24 #include "chrome/browser/plugin_prefs.h"
25 #include "chrome/browser/profiles/profile.h" 25 #include "chrome/browser/profiles/profile.h"
26 #include "chrome/browser/profiles/profile_manager.h" 26 #include "chrome/browser/profiles/profile_manager.h"
27 #include "chrome/browser/ui/browser.h" 27 #include "chrome/browser/ui/browser.h"
28 #include "chrome/browser/ui/browser_finder.h" 28 #include "chrome/browser/ui/browser_finder.h"
29 #include "chrome/browser/ui/browser_window.h" 29 #include "chrome/browser/ui/browser_window.h"
30 #include "chrome/browser/ui/extensions/application_launch.h"
30 #include "chrome/browser/ui/simple_message_box.h" 31 #include "chrome/browser/ui/simple_message_box.h"
31 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" 32 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
32 #include "chrome/browser/ui/tabs/tab_strip_model.h" 33 #include "chrome/browser/ui/tabs/tab_strip_model.h"
33 #include "chrome/common/chrome_paths.h" 34 #include "chrome/common/chrome_paths.h"
34 #include "chrome/common/extensions/file_browser_handler.h" 35 #include "chrome/common/extensions/file_browser_handler.h"
35 #include "chrome/common/url_constants.h" 36 #include "chrome/common/url_constants.h"
36 #include "content/public/browser/browser_thread.h" 37 #include "content/public/browser/browser_thread.h"
37 #include "content/public/browser/plugin_service.h" 38 #include "content/public/browser/plugin_service.h"
38 #include "content/public/browser/user_metrics.h" 39 #include "content/public/browser/user_metrics.h"
39 #include "content/public/browser/web_contents.h" 40 #include "content/public/browser/web_contents.h"
(...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after
463 const extensions::Extension* extension = 464 const extensions::Extension* extension =
464 service->GetExtensionById(kFileBrowserDomain, false); 465 service->GetExtensionById(kFileBrowserDomain, false);
465 if (!extension) 466 if (!extension)
466 return; 467 return;
467 468
468 extension_misc::LaunchContainer launch_container = 469 extension_misc::LaunchContainer launch_container =
469 service->extension_prefs()-> 470 service->extension_prefs()->
470 GetLaunchContainer(extension, ExtensionPrefs::LAUNCH_DEFAULT); 471 GetLaunchContainer(extension, ExtensionPrefs::LAUNCH_DEFAULT);
471 472
472 content::RecordAction(UserMetricsAction("ShowFileBrowserFullTab")); 473 content::RecordAction(UserMetricsAction("ShowFileBrowserFullTab"));
473 Browser::OpenApplication( 474 application_launch::OpenApplication(
474 profile, extension, launch_container, GURL(url), NEW_FOREGROUND_TAB); 475 profile, extension, launch_container, GURL(url), NEW_FOREGROUND_TAB);
475 } 476 }
476 477
477 void ViewRemovableDrive(const FilePath& path) { 478 void ViewRemovableDrive(const FilePath& path) {
478 OpenFileBrowser(path, REUSE_ANY_FILE_MANAGER, "mountTriggered"); 479 OpenFileBrowser(path, REUSE_ANY_FILE_MANAGER, "mountTriggered");
479 } 480 }
480 481
481 void ShowFileInFolder(const FilePath& path) { 482 void ShowFileInFolder(const FilePath& path) {
482 // This action changes the selection so we do not reuse existing tabs. 483 // This action changes the selection so we do not reuse existing tabs.
483 OpenFileBrowser(path, REUSE_NEVER, "selectOnly"); 484 OpenFileBrowser(path, REUSE_NEVER, "selectOnly");
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
723 GDataOperationRegistry::ProgressStatus>::const_iterator iter = 724 GDataOperationRegistry::ProgressStatus>::const_iterator iter =
724 list.begin(); 725 list.begin();
725 iter != list.end(); ++iter) { 726 iter != list.end(); ++iter) {
726 result_list->Append( 727 result_list->Append(
727 ProgessStatusToDictionaryValue(profile, origin_url, *iter)); 728 ProgessStatusToDictionaryValue(profile, origin_url, *iter));
728 } 729 }
729 return result_list.release(); 730 return result_list.release();
730 } 731 }
731 732
732 } // namespace file_manager_util 733 } // namespace file_manager_util
OLDNEW
« no previous file with comments | « chrome/browser/background/background_mode_manager.cc ('k') | chrome/browser/extensions/api/omnibox/omnibox_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698