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

Unified Diff: chrome/browser/browser_init.cc

Issue 3436019: Added code in the browser process to display a Cloud Print token expired desk... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Fixed Linux build Created 10 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/browser_init.cc
===================================================================
--- chrome/browser/browser_init.cc (revision 59251)
+++ chrome/browser/browser_init.cc (working copy)
@@ -35,6 +35,7 @@
#include "chrome/browser/notifications/desktop_notification_service.h"
#include "chrome/browser/prefs/pref_service.h"
#include "chrome/browser/prefs/session_startup_pref.h"
+#include "chrome/browser/printing/cloud_print/cloud_print_proxy_service.h"
#include "chrome/browser/profile.h"
#include "chrome/browser/renderer_host/render_process_host.h"
#include "chrome/browser/search_engines/template_url.h"
@@ -1048,6 +1049,13 @@
}
}
+ // If we have been invoked to display a desktop notification on behalf of
+ // the service process, we do not want to open any browser windows.
+ if (command_line.HasSwitch(switches::kNotifyCloudPrintTokenExpired)) {
+ silent_launch = true;
+ profile->GetCloudPrintProxyService()->ShowTokenExpiredNotification();
+ }
+
if (command_line.HasSwitch(switches::kExplicitlyAllowedPorts)) {
std::string allowed_ports =
command_line.GetSwitchValueASCII(switches::kExplicitlyAllowedPorts);

Powered by Google App Engine
This is Rietveld 408576698