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

Unified Diff: chrome/browser/dom_ui/shown_sections_handler.cc

Issue 4658006: Open apps section on NTP when new app get installed (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments resolved 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
« no previous file with comments | « chrome/browser/dom_ui/shown_sections_handler.h ('k') | chrome/browser/extensions/extensions_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/dom_ui/shown_sections_handler.cc
diff --git a/chrome/browser/dom_ui/shown_sections_handler.cc b/chrome/browser/dom_ui/shown_sections_handler.cc
index 189c1c3d39b0d4a6c6a995e0d8772a238f0fbf92..93a672fb7034bfe50c48c79400857aaeb66d7dc3 100644
--- a/chrome/browser/dom_ui/shown_sections_handler.cc
+++ b/chrome/browser/dom_ui/shown_sections_handler.cc
@@ -14,7 +14,6 @@
#include "chrome/common/chrome_switches.h"
#include "chrome/common/extensions/extension.h"
#include "chrome/common/notification_details.h"
-#include "chrome/common/notification_source.h"
#include "chrome/common/notification_type.h"
#include "chrome/common/pref_names.h"
@@ -55,9 +54,6 @@ ShownSectionsHandler::ShownSectionsHandler(PrefService* pref_service)
}
void ShownSectionsHandler::RegisterMessages() {
- notification_registrar_.Add(this, NotificationType::EXTENSION_INSTALLED,
- Source<Profile>(dom_ui_->GetProfile()));
-
dom_ui_->RegisterMessageCallback("getShownSections",
NewCallback(this, &ShownSectionsHandler::HandleGetShownSections));
dom_ui_->RegisterMessageCallback("setShownSections",
@@ -73,21 +69,6 @@ void ShownSectionsHandler::Observe(NotificationType type,
int sections = pref_service_->GetInteger(prefs::kNTPShownSections);
FundamentalValue sections_value(sections);
dom_ui_->CallJavascriptFunction(L"setShownSections", sections_value);
- } else if (type == NotificationType::EXTENSION_INSTALLED) {
- if (Details<const Extension>(details).ptr()->is_app()) {
- int mode = pref_service_->GetInteger(prefs::kNTPShownSections);
-
- // De-minimize the apps section.
- mode &= ~MINIMIZED_APPS;
-
- // Hide any open sections.
- mode &= ~ALL_SECTIONS_MASK;
-
- // Show the apps section.
- mode |= APPS;
-
- pref_service_->SetInteger(prefs::kNTPShownSections, mode);
- }
} else {
NOTREACHED();
}
@@ -137,3 +118,22 @@ void ShownSectionsHandler::MigrateUserPrefs(PrefService* pref_service,
if (changed)
pref_service->SetInteger(prefs::kNTPShownSections, shown_sections);
}
+
+// static
+void ShownSectionsHandler::OnExtensionInstalled(PrefService* prefs,
+ const Extension* extension) {
+ if (extension->is_app()) {
+ int mode = prefs->GetInteger(prefs::kNTPShownSections);
+
+ // De-minimize the apps section.
+ mode &= ~MINIMIZED_APPS;
+
+ // Hide any open sections.
+ mode &= ~ALL_SECTIONS_MASK;
+
+ // Show the apps section.
+ mode |= APPS;
+
+ prefs->SetInteger(prefs::kNTPShownSections, mode);
+ }
+}
« no previous file with comments | « chrome/browser/dom_ui/shown_sections_handler.h ('k') | chrome/browser/extensions/extensions_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698