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

Side by Side Diff: chrome/browser/upgrade_detector.cc

Issue 10656014: Merge 143605 - grd file update for new 2x assets (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1180/src/
Patch Set: Created 8 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/upgrade_detector.h" 5 #include "chrome/browser/upgrade_detector.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "chrome/browser/prefs/pref_service.h" 9 #include "chrome/browser/prefs/pref_service.h"
10 #include "chrome/browser/lifetime/application_lifetime.h" 10 #include "chrome/browser/lifetime/application_lifetime.h"
11 #include "chrome/common/chrome_notification_types.h" 11 #include "chrome/common/chrome_notification_types.h"
12 #include "chrome/common/chrome_switches.h" 12 #include "chrome/common/chrome_switches.h"
13 #include "chrome/common/pref_names.h" 13 #include "chrome/common/pref_names.h"
14 #include "content/public/browser/notification_service.h" 14 #include "content/public/browser/notification_service.h"
15 #include "grit/theme_resources.h" 15 #include "grit/theme_resources_standard.h"
16 16
17 // How long to wait between checks for whether the user has been idle. 17 // How long to wait between checks for whether the user has been idle.
18 static const int kIdleRepeatingTimerWait = 10; // Minutes (seconds if testing). 18 static const int kIdleRepeatingTimerWait = 10; // Minutes (seconds if testing).
19 19
20 // How much idle time (since last input even was detected) must have passed 20 // How much idle time (since last input even was detected) must have passed
21 // until we notify that a critical update has occurred. 21 // until we notify that a critical update has occurred.
22 static const int kIdleAmount = 2; // Hours (or seconds, if testing). 22 static const int kIdleAmount = 2; // Hours (or seconds, if testing).
23 23
24 bool UseTestingIntervals() { 24 bool UseTestingIntervals() {
25 // If a command line parameter specifying how long the upgrade check should 25 // If a command line parameter specifying how long the upgrade check should
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 break; 119 break;
120 case IDLE_STATE_ACTIVE: 120 case IDLE_STATE_ACTIVE:
121 case IDLE_STATE_UNKNOWN: 121 case IDLE_STATE_UNKNOWN:
122 break; 122 break;
123 default: 123 default:
124 NOTREACHED(); // Need to add any new value above (either providing 124 NOTREACHED(); // Need to add any new value above (either providing
125 // automatic restart or show notification to user). 125 // automatic restart or show notification to user).
126 break; 126 break;
127 } 127 }
128 } 128 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/extensions/extension_icon_source.cc ('k') | chrome/common/extensions/extension.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698