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 #ifndef CHROME_TEST_CHROMEDRIVER_CHROME_VERSION_H_ 6 #define CHROME_TEST_CHROMEDRIVER_CHROME_VERSION_H_ 7 8 #include <string> 9 10 struct BrowserInfo { 11 BrowserInfo(); 12 BrowserInfo(std::string browser_name_, 13 std::string browser_version_, 14 int build_no_, 15 int blink_revision_); 16 17 std::string browser_name; 18 std::string browser_version; 19 int build_no; 20 int blink_revision; 21 }; 22 23 extern const int kMinimumSupportedChromeBuildNo; 24 25 std::string GetMinimumSupportedChromeVersion(); 26 27 #endif // CHROME_TEST_CHROMEDRIVER_CHROME_VERSION_H_ 28