version_handler_helper.h 696 B

123456789101112131415161718192021
  1. // Copyright 2015 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. #ifndef COMPONENTS_VERSION_UI_VERSION_HANDLER_HELPER_H_
  5. #define COMPONENTS_VERSION_UI_VERSION_HANDLER_HELPER_H_
  6. #include "base/values.h"
  7. namespace version_ui {
  8. // Returns the list of variations to be displayed on the chrome:://version page.
  9. base::Value::List GetVariationsList();
  10. // Returns the variations information in command line format to be displayed on
  11. // the chrome:://version page.
  12. base::Value GetVariationsCommandLineAsValue();
  13. } // namespace version_ui
  14. #endif // COMPONENTS_VERSION_UI_VERSION_HANDLER_HELPER_H_