// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_TEST_CHROMEDRIVER_CHROME_BROWSER_INFO_H_ #define CHROME_TEST_CHROMEDRIVER_CHROME_BROWSER_INFO_H_ #include "base/values.h" #include "chrome/test/chromedriver/chrome/devtools_endpoint.h" #include "chrome/test/chromedriver/chrome/status.h" // Content Shell and WebView have an empty product version and a fake user // agent. There's no way to detect the actual version, so unless specified we // assume it is tip of tree. static const int kToTBuildNo = …; // Similarly, if the Blink Revision isn't given then assume it is tip of tree. static const int kToTBlinkRevision = …; struct BrowserInfo { … }; #endif // CHROME_TEST_CHROMEDRIVER_CHROME_BROWSER_INFO_H_