OLD | NEW |
| (Empty) |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "chrome/browser/ui/views/browser_bubble.h" | |
6 | |
7 // TODO(msw|oshima): This will be replaced with new bubble. | |
8 // See crbug.com/97248. | |
9 | |
10 void BrowserBubble::InitPopup(const gfx::Insets& content_margins) { | |
11 NOTIMPLEMENTED(); | |
12 } | |
13 | |
14 void BrowserBubble::Show(bool activate) { | |
15 NOTIMPLEMENTED(); | |
16 } | |
17 | |
18 void BrowserBubble::Hide() { | |
19 NOTIMPLEMENTED(); | |
20 } | |
21 | |
22 void BrowserBubble::ResizeToView() { | |
23 NOTIMPLEMENTED(); | |
24 } | |
OLD | NEW |