diff options
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/chrome_switches.cc | 3 | ||||
-rw-r--r-- | chrome/common/chrome_switches.h | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index cdf8e3c..cc390da 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -353,4 +353,7 @@ const wchar_t kEnableRendererAccessibility[] = L"enable-renderer-accessibility"; // Enable HTML5 Video/Audio tag support const wchar_t kEnableVideo[] = L"enable-video"; +// Pass the name of the current running automated test to Chrome. +const wchar_t kTestName[] = L"test-name"; + } // namespace switches diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h index fe9478b..acd84a7 100644 --- a/chrome/common/chrome_switches.h +++ b/chrome/common/chrome_switches.h @@ -139,6 +139,8 @@ extern const wchar_t kEnableRendererAccessibility[]; extern const wchar_t kEnableVideo[]; +extern const wchar_t kTestName[]; + } // namespace switches #endif // CHROME_COMMON_CHROME_SWITCHES_H__ |