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

Side by Side Diff: chrome/browser/ui/browser_init.cc

Issue 5019005: Add "open as window" menu item to NTP app menu. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add test. Created 10 years, 1 month 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
« chrome/browser/ui/browser.cc ('K') | « chrome/browser/ui/browser.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/ui/browser_init.h" 5 #include "chrome/browser/ui/browser_init.h"
6 6
7 #include <algorithm> // For max(). 7 #include <algorithm> // For max().
8 8
9 #include "app/l10n_util.h" 9 #include "app/l10n_util.h"
10 #include "app/resource_bundle.h" 10 #include "app/resource_bundle.h"
(...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after
597 return true; 597 return true;
598 } 598 }
599 return false; 599 return false;
600 } 600 }
601 601
602 bool BrowserInit::LaunchWithProfile::OpenApplicationWindow(Profile* profile) { 602 bool BrowserInit::LaunchWithProfile::OpenApplicationWindow(Profile* profile) {
603 std::string url_string, app_id; 603 std::string url_string, app_id;
604 if (!IsAppLaunch(&url_string, &app_id)) 604 if (!IsAppLaunch(&url_string, &app_id))
605 return false; 605 return false;
606 606
607 // http://crbug.com/37548 607 // This can fail if the app_id is invalid. It can also fail if the
608 // TODO(rafaelw): There are two legitimate cases where the extensions 608 // extension is external, and has not yet been installed.
609 // service could not be ready at this point which need to be handled: 609 // TODO(skerner): Do something reasonable here. Pop up a warning panel?
610 // 1) The locale has changed and the manifests stored in the preferences
611 // need to be relocalized.
612 // 2) An externally installed extension will be found and installed.
613 // Note that this can also fail if the app_id is simply invalid.
614 // TODO(rafaelw): Do something reasonable here. Pop up a warning panel?
615 // Open an URL to the gallery page of the extension id? 610 // Open an URL to the gallery page of the extension id?
616 if (!app_id.empty()) 611 if (!app_id.empty())
617 return Browser::OpenApplication(profile, app_id, NULL) != NULL; 612 return Browser::OpenApplication(profile, app_id, NULL) != NULL;
618 613
619 if (url_string.empty()) 614 if (url_string.empty())
620 return false; 615 return false;
621 616
622 #if defined(OS_WIN) // Fix up Windows shortcuts. 617 #if defined(OS_WIN) // Fix up Windows shortcuts.
623 ReplaceSubstringsAfterOffset(&url_string, 0, "\\x", "%"); 618 ReplaceSubstringsAfterOffset(&url_string, 0, "\\x", "%");
624 #endif 619 #endif
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after
1026 scoped_refptr<AutomationProviderClass> automation = 1021 scoped_refptr<AutomationProviderClass> automation =
1027 new AutomationProviderClass(profile); 1022 new AutomationProviderClass(profile);
1028 automation->ConnectToChannel(channel_id); 1023 automation->ConnectToChannel(channel_id);
1029 automation->SetExpectedTabCount(expected_tabs); 1024 automation->SetExpectedTabCount(expected_tabs);
1030 1025
1031 AutomationProviderList* list = 1026 AutomationProviderList* list =
1032 g_browser_process->InitAutomationProviderList(); 1027 g_browser_process->InitAutomationProviderList();
1033 DCHECK(list); 1028 DCHECK(list);
1034 list->AddProvider(automation); 1029 list->AddProvider(automation);
1035 } 1030 }
OLDNEW
« chrome/browser/ui/browser.cc ('K') | « chrome/browser/ui/browser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698