| Index: chrome/browser/ui/views/bubble/views_bubble_controller.h
|
| diff --git a/chrome/browser/ui/views/bubble/views_bubble_controller.h b/chrome/browser/ui/views/bubble/views_bubble_controller.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..58eaef4e2e5ba2806c53e702bfe430ca8630d51d
|
| --- /dev/null
|
| +++ b/chrome/browser/ui/views/bubble/views_bubble_controller.h
|
| @@ -0,0 +1,16 @@
|
| +// 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 CHROME_BROWSER_UI_VIEWS_BUBBLE_VIEWS_BUBBLE_CONTROLLER_H_
|
| +#define CHROME_BROWSER_UI_VIEWS_BUBBLE_VIEWS_BUBBLE_CONTROLLER_H_
|
| +
|
| +#include "components/bubble/bubble_controller.h"
|
| +
|
| +class ViewsBubbleController : public BubbleController {
|
| + public:
|
| + ViewsBubbleController(BubbleManager* manager, BubbleDelegate* delegate);
|
| + ~ViewsBubbleController() override {}
|
| +};
|
| +
|
| +#endif // CHROME_BROWSER_UI_VIEWS_BUBBLE_VIEWS_BUBBLE_CONTROLLER_H_
|
|
|