summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/browser_list.h
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-10 20:27:39 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-10 20:27:39 +0000
commit8b64e20472a0d23ca24b12c32e8b962e1b429b47 (patch)
treecf22a75f91123fad9e7d12567eec43c33127a7e4 /chrome/browser/ui/browser_list.h
parent954b10803a3d37f4a079874d5a6c81d4956920c6 (diff)
downloadchromium_src-8b64e20472a0d23ca24b12c32e8b962e1b429b47.zip
chromium_src-8b64e20472a0d23ca24b12c32e8b962e1b429b47.tar.gz
chromium_src-8b64e20472a0d23ca24b12c32e8b962e1b429b47.tar.bz2
Rename WindowsSessionEnding to SessionEnding since it's used on multiple platforms.
BUG=none TEST=none Review URL: http://codereview.chromium.org/4681004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65698 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/browser_list.h')
-rw-r--r--chrome/browser/ui/browser_list.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/ui/browser_list.h b/chrome/browser/ui/browser_list.h
index bef9013..07ee0ec 100644
--- a/chrome/browser/ui/browser_list.h
+++ b/chrome/browser/ui/browser_list.h
@@ -107,8 +107,8 @@ class BrowserList {
// message.
static void CloseAllBrowsers();
- // Begins shutdown of the application when the Windows session is ending.
- static void WindowsSessionEnding();
+ // Begins shutdown of the application when the session is ending.
+ static void SessionEnding();
// Returns true if there is at least one Browser with the specified profile.
static bool HasBrowserWithProfile(Profile* profile);
@@ -204,11 +204,11 @@ class TabContentsIterator {
}
// Incrementing operators, valid as long as !Done()
- TabContents* operator++() { // ++preincrement
+ TabContents* operator++() { // ++preincrement
Advance();
return cur_;
}
- TabContents* operator++(int) { // postincrement++
+ TabContents* operator++(int) { // postincrement++
TabContents* tmp = cur_;
Advance();
return tmp;