| Index: views/examples/bubble_example.h
|
| diff --git a/views/examples/bubble_example.h b/views/examples/bubble_example.h
|
| deleted file mode 100644
|
| index 65211aecce2a9ee82744b066e5a33dfca23064d3..0000000000000000000000000000000000000000
|
| --- a/views/examples/bubble_example.h
|
| +++ /dev/null
|
| @@ -1,40 +0,0 @@
|
| -// Copyright (c) 2011 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 VIEWS_EXAMPLES_BUBBLE_EXAMPLE_H_
|
| -#define VIEWS_EXAMPLES_BUBBLE_EXAMPLE_H_
|
| -#pragma once
|
| -
|
| -#include "views/examples/example_base.h"
|
| -#include "views/controls/button/button.h"
|
| -
|
| -namespace examples {
|
| -
|
| -struct BubbleConfig;
|
| -
|
| -// A Bubble example.
|
| -class BubbleExample : public ExampleBase,
|
| - public views::ButtonListener {
|
| - public:
|
| - explicit BubbleExample(ExamplesMain* main);
|
| - virtual ~BubbleExample();
|
| -
|
| - // Overridden from ExampleBase.
|
| - virtual void CreateExampleView(views::View* container) OVERRIDE;
|
| -
|
| - private:
|
| - virtual void ButtonPressed(views::Button* sender,
|
| - const views::Event& event) OVERRIDE;
|
| -
|
| - views::Button* round_;
|
| - views::Button* arrow_;
|
| - views::Button* fade_in_;
|
| - views::Button* fade_out_;
|
| -
|
| - DISALLOW_COPY_AND_ASSIGN(BubbleExample);
|
| -};
|
| -
|
| -} // namespace examples
|
| -
|
| -#endif // VIEWS_EXAMPLES_BUBBLE_EXAMPLE_H_
|
|
|