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

Side by Side Diff: win8/test/test_registrar_constants.cc

Issue 12096064: Automatic Win8 default browser registration for the ash unittests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleanup. Created 7 years, 10 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
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "win8/test/test_registrar_constants.h"
6
7 namespace win8 {
8 namespace test {
9
10 // The AppUserModelId value to use during default browser registration.
11 const char kTestAppUserModelId[] = "appid";
12
13 // Allows the caller to override the visible name given to the exe being
14 // registered as the default browser.
15 const char kTestExeName[] = "exe-name";
16
17 // Specifies the path to the executable being registered as the default
18 // browser.
19 const char kTestExePath[] = "exe-path";
20
21 // The AppUserModelId value to use during default browser registration.
22 const char kTestProgId[] = "progid";
23
24 // Default values for the above flags.
25 const wchar_t kDefaultTestAppUserModelId[] = L"Chrome.test";
26 const wchar_t kDefaultTestExeName[] = L"Test Runner";
27 const wchar_t kDefaultTestExePath[] = L"chrome.exe";
28 const wchar_t kDefaultTestProgId[] = L"ChromeTestProgId";
29
30 }
31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698