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

Side by Side Diff: chrome/common/chrome_constants.h

Issue 10470002: Add ShellIntegration::ActivateMetroChrome, which launches Chrome in metro-mode on Windows 8. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: include windows.h for HRESULT 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) 2012 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 // A handful of resource-like constants related to the Chrome application. 5 // A handful of resource-like constants related to the Chrome application.
6 6
7 #ifndef CHROME_COMMON_CHROME_CONSTANTS_H_ 7 #ifndef CHROME_COMMON_CHROME_CONSTANTS_H_
8 #define CHROME_COMMON_CHROME_CONSTANTS_H_ 8 #define CHROME_COMMON_CHROME_CONSTANTS_H_
9 #pragma once 9 #pragma once
10 10
(...skipping 21 matching lines...) Expand all
32 // This is a NULL-terminated array of strings. If kHelperFlavorSuffixes 32 // This is a NULL-terminated array of strings. If kHelperFlavorSuffixes
33 // contains "EN", "MF", and NULL, it indicates that if the normal helper is 33 // contains "EN", "MF", and NULL, it indicates that if the normal helper is
34 // named Chromium Helper.app, helper executables could show up at any of 34 // named Chromium Helper.app, helper executables could show up at any of
35 // Chromium Helper.app/Contents/MacOS/Chromium Helper, 35 // Chromium Helper.app/Contents/MacOS/Chromium Helper,
36 // Chromium Helper EN.app/Contents/MacOS/Chromium Helper EN, and 36 // Chromium Helper EN.app/Contents/MacOS/Chromium Helper EN, and
37 // Chromium Helper MF.app/Contents/MacOS/Chromium Helper MF. 37 // Chromium Helper MF.app/Contents/MacOS/Chromium Helper MF.
38 extern const FilePath::CharType* const kHelperFlavorSuffixes[]; 38 extern const FilePath::CharType* const kHelperFlavorSuffixes[];
39 #endif // OS_MACOSX 39 #endif // OS_MACOSX
40 extern const wchar_t kBrowserAppName[]; 40 extern const wchar_t kBrowserAppName[];
41 #if defined(OS_WIN) 41 #if defined(OS_WIN)
42 extern const FilePath::CharType kMetroDriverDll[];
42 extern const wchar_t kStatusTrayWindowClass[]; 43 extern const wchar_t kStatusTrayWindowClass[];
43 #endif // defined(OS_WIN) 44 #endif // defined(OS_WIN)
44 extern const wchar_t kMessageWindowClass[]; 45 extern const wchar_t kMessageWindowClass[];
45 extern const wchar_t kCrashReportLog[]; 46 extern const wchar_t kCrashReportLog[];
46 extern const wchar_t kTestingInterfaceDLL[]; 47 extern const wchar_t kTestingInterfaceDLL[];
47 extern const char kInitialProfile[]; 48 extern const char kInitialProfile[];
48 extern const char kMultiProfileDirPrefix[]; 49 extern const char kMultiProfileDirPrefix[];
49 extern const wchar_t kBrowserResourcesDll[]; 50 extern const wchar_t kBrowserResourcesDll[];
50 extern const wchar_t kNaClAppName[]; 51 extern const wchar_t kNaClAppName[];
51 extern const FilePath::CharType kExtensionFileExtension[]; 52 extern const FilePath::CharType kExtensionFileExtension[];
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 extern const wchar_t kMetroChromeUserDataSubDir[]; 138 extern const wchar_t kMetroChromeUserDataSubDir[];
138 // Used by Metro Chrome to initiate navigation and search requests. 139 // Used by Metro Chrome to initiate navigation and search requests.
139 extern const wchar_t kMetroNavigationAndSearchMessage[]; 140 extern const wchar_t kMetroNavigationAndSearchMessage[];
140 // Used by Metro Chrome to get information about the current tab. 141 // Used by Metro Chrome to get information about the current tab.
141 extern const wchar_t kMetroGetCurrentTabInfoMessage[]; 142 extern const wchar_t kMetroGetCurrentTabInfoMessage[];
142 #endif 143 #endif
143 144
144 } // namespace chrome 145 } // namespace chrome
145 146
146 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ 147 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698