summaryrefslogtreecommitdiffstats
path: root/chrome/common
diff options
context:
space:
mode:
authoratwilson@google.com <atwilson@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-24 21:29:05 +0000
committeratwilson@google.com <atwilson@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-24 21:29:05 +0000
commita24642a800c1712eeaa791f0fb0ed1527885c6fb (patch)
tree925671bf6414abcc8da68cd48a6085fa0007dd6b /chrome/common
parent45e9bcaa8bd6ff0eb2bf61d7100b1faacd2ccef4 (diff)
downloadchromium_src-a24642a800c1712eeaa791f0fb0ed1527885c6fb.zip
chromium_src-a24642a800c1712eeaa791f0fb0ed1527885c6fb.tar.gz
chromium_src-a24642a800c1712eeaa791f0fb0ed1527885c6fb.tar.bz2
Implement status icons on windows.
Refactor existing status icon code to allow platform-specific StatusTray implementation to track common state for all status icons. BUG=37375 TEST=new unit tests Review URL: http://codereview.chromium.org/1136005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42538 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r--chrome/common/chrome_constants.cc1
-rw-r--r--chrome/common/chrome_constants.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/chrome/common/chrome_constants.cc b/chrome/common/chrome_constants.cc
index e88c835..38cf59e 100644
--- a/chrome/common/chrome_constants.cc
+++ b/chrome/common/chrome_constants.cc
@@ -67,6 +67,7 @@ const wchar_t kBrowserAppID[] = L"Chrome";
#else
const wchar_t kBrowserAppID[] = L"Chromium";
#endif
+const wchar_t kStatusTrayWindowClass[] = L"Chrome_StatusTrayWindow";
#endif // defined(OS_WIN)
const wchar_t kMessageWindowClass[] = L"Chrome_MessageWindow";
diff --git a/chrome/common/chrome_constants.h b/chrome/common/chrome_constants.h
index abe0283..554a48b 100644
--- a/chrome/common/chrome_constants.h
+++ b/chrome/common/chrome_constants.h
@@ -23,6 +23,7 @@ extern const FilePath::CharType kFrameworkName[];
extern const wchar_t kBrowserAppName[];
#if defined(OS_WIN)
extern const wchar_t kBrowserAppID[];
+extern const wchar_t kStatusTrayWindowClass[];
#endif // defined(OS_WIN)
extern const wchar_t kMessageWindowClass[];
extern const wchar_t kCrashReportLog[];