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

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

Issue 4885001: Merge 65917 - Open apps section on NTP when new app get installed... (Closed) Base URL: svn://svn.chromium.org/chrome/branches/552/src/
Patch Set: 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
===================================================================
--- chrome/browser/dom_ui/shown_sections_handler.cc (revision 65923)
+++ chrome/browser/dom_ui/shown_sections_handler.cc (working copy)
@@ -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 @@
}
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 @@
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 @@
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