blob: 39f1d02181e9f7e507c9aafd5e91eb4795b9110d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// Copyright 2020 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 UI_VIEWS_EXAMPLES_CREATE_EXAMPLES_H_
#define UI_VIEWS_EXAMPLES_CREATE_EXAMPLES_H_
#include <memory>
#include <vector>
#include "ui/views/examples/example_base.h"
#include "ui/views/examples/views_examples_export.h"
namespace views {
namespace examples {
// Creates the default set of examples.
ExampleVector VIEWS_EXAMPLES_EXPORT
CreateExamples(ExampleVector extra_examples = ExampleVector());
} // namespace examples
} // namespace views
#endif // UI_VIEWS_EXAMPLES_CREATE_EXAMPLES_H_
|