// Copyright 2011 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/views/examples/checkbox_example.h" #include "base/functional/bind.h" #include "ui/views/controls/button/checkbox.h" #include "ui/views/examples/examples_window.h" #include "ui/views/layout/flex_layout_view.h" namespace views::examples { CheckboxExample::CheckboxExample() : … { … } CheckboxExample::~CheckboxExample() = default; void CheckboxExample::CreateExampleView(View* container) { … } } // namespace views::examples