blob: fbf57e79a8809c0107c8f4153d7d44b8a2548812 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_VERSION_UI_VERSION_HANDLER_HELPER_H_
#define COMPONENTS_VERSION_UI_VERSION_HANDLER_HELPER_H_
#include "base/memory/scoped_ptr.h"
namespace base {
class Value;
}
namespace version_ui {
// Returns the list of variations to be displayed on the chrome:://version page.
scoped_ptr<base::Value> GetVariationsList();
} // namespace version_ui
#endif // COMPONENTS_VERSION_UI_VERSION_HANDLER_HELPER_H_
|