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

Unified Diff: chrome/browser/extensions/extension_dom_ui.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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/extension_dom_ui.cc
diff --git a/chrome/browser/extensions/extension_dom_ui.cc b/chrome/browser/extensions/extension_dom_ui.cc
index 6f16484cedb7864b991bc0b88e416a22e53ca90f..76d29acee317dbe1af1f5d09a14831fb5cc4af70 100644
--- a/chrome/browser/extensions/extension_dom_ui.cc
+++ b/chrome/browser/extensions/extension_dom_ui.cc
@@ -239,9 +239,6 @@ bool ExtensionDOMUI::HandleChromeURLOverride(GURL* url, Profile* profile) {
ExtensionsService* service = profile->GetExtensionsService();
if (!service->is_ready()) {
- // TODO(erikkay) So far, it looks like extensions load before the new tab
- // page. I don't know if we have anything that enforces this, so add this
- // check for safety.
NOTREACHED() << "Chrome URL override requested before extensions loaded";
Sam Kerner (Chrome) 2010/11/17 05:07:36 Comment is obsolete now that extensions service lo
Aaron Boodman 2010/11/17 06:12:47 In that case, you can remove this check completely
Sam Kerner (Chrome) 2010/11/18 03:53:36 ExtensionsService::ready_ is set to false in the e
return false;
}

Powered by Google App Engine
This is Rietveld 408576698