OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2009 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/notifications/balloon_collection.h" |
| 6 |
| 7 #include "base/gfx/size.h" |
| 8 #include "base/logging.h" |
| 9 |
| 10 Balloon* BalloonCollectionImpl::MakeBalloon(const Notification& notification, |
| 11 Profile* profile) { |
| 12 // TODO(johnnyg): http://crbug.com/23954. Part of future Linux support. |
| 13 NOTIMPLEMENTED(); |
| 14 return NULL; |
| 15 } |
| 16 |
| 17 bool BalloonCollectionImpl::Layout::RefreshSystemMetrics() { |
| 18 // TODO(johnnyg): http://crbug.com/23954. Part of future Linux support. |
| 19 NOTIMPLEMENTED(); |
| 20 return false; |
| 21 } |
OLD | NEW |