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

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

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: metro_exports -> metro 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
« no previous file with comments | « chrome/common/chrome_constants.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "chrome/common/chrome_constants.h" 5 #include "chrome/common/chrome_constants.h"
6 6
7 #include "base/file_path.h" 7 #include "base/file_path.h"
8 8
9 #define FPL FILE_PATH_LITERAL 9 #define FPL FILE_PATH_LITERAL
10 10
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 #endif // OS_MACOSX 102 #endif // OS_MACOSX
103 103
104 const wchar_t kNaClAppName[] = L"nacl64"; 104 const wchar_t kNaClAppName[] = L"nacl64";
105 #if defined(GOOGLE_CHROME_BUILD) 105 #if defined(GOOGLE_CHROME_BUILD)
106 const wchar_t kBrowserAppName[] = L"Chrome"; 106 const wchar_t kBrowserAppName[] = L"Chrome";
107 #else 107 #else
108 const wchar_t kBrowserAppName[] = L"Chromium"; 108 const wchar_t kBrowserAppName[] = L"Chromium";
109 #endif 109 #endif
110 110
111 #if defined(OS_WIN) 111 #if defined(OS_WIN)
112 const FilePath::CharType kMetroDriverDll[] = FPL("metro_driver.dll");
112 const wchar_t kStatusTrayWindowClass[] = L"Chrome_StatusTrayWindow"; 113 const wchar_t kStatusTrayWindowClass[] = L"Chrome_StatusTrayWindow";
113 #endif // defined(OS_WIN) 114 #endif // defined(OS_WIN)
114 115
115 const wchar_t kMessageWindowClass[] = L"Chrome_MessageWindow"; 116 const wchar_t kMessageWindowClass[] = L"Chrome_MessageWindow";
116 const wchar_t kCrashReportLog[] = L"Reported Crashes.txt"; 117 const wchar_t kCrashReportLog[] = L"Reported Crashes.txt";
117 const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll"; 118 const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll";
118 const char kInitialProfile[] = "Default"; 119 const char kInitialProfile[] = "Default";
119 const char kMultiProfileDirPrefix[] = "Profile "; 120 const char kMultiProfileDirPrefix[] = "Profile ";
120 const wchar_t kBrowserResourcesDll[] = L"chrome.dll"; 121 const wchar_t kBrowserResourcesDll[] = L"chrome.dll";
121 const FilePath::CharType kExtensionFileExtension[] = FPL(".crx"); 122 const FilePath::CharType kExtensionFileExtension[] = FPL(".crx");
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 const wchar_t kMetroChromeUserDataSubDir[] = L"Metro"; 207 const wchar_t kMetroChromeUserDataSubDir[] = L"Metro";
207 const wchar_t kMetroNavigationAndSearchMessage[] = 208 const wchar_t kMetroNavigationAndSearchMessage[] =
208 L"CHROME_METRO_NAV_SEARCH_REQUEST"; 209 L"CHROME_METRO_NAV_SEARCH_REQUEST";
209 const wchar_t kMetroGetCurrentTabInfoMessage[] = 210 const wchar_t kMetroGetCurrentTabInfoMessage[] =
210 L"CHROME_METRO_GET_CURRENT_TAB_INFO"; 211 L"CHROME_METRO_GET_CURRENT_TAB_INFO";
211 #endif 212 #endif
212 213
213 } // namespace chrome 214 } // namespace chrome
214 215
215 #undef FPL 216 #undef FPL
OLDNEW
« no previous file with comments | « chrome/common/chrome_constants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698