OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 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 "base/logging.h" |
| 6 #include "chrome/browser/ui/toolbar/media_router_action_platform_delegate.h" |
| 7 |
| 8 #if defined(OS_MACOSX) |
| 9 // static |
| 10 scoped_ptr<MediaRouterActionPlatformDelegate> |
| 11 MediaRouterActionPlatformDelegate::Create(Browser* browser) { |
| 12 return nullptr; |
| 13 } |
| 14 #endif |
| 15 |
| 16 MediaRouterActionPlatformDelegate::MediaRouterActionPlatformDelegate() { |
| 17 } |
| 18 |
| 19 #if defined(OS_MACOSX) |
| 20 MediaRouterActionPlatformDelegate::MediaRouterActionPlatformDelegate( |
| 21 Browser* browser) { |
| 22 NOTIMPLEMENTED(); |
| 23 } |
| 24 |
| 25 void MediaRouterActionPlatformDelegate::CloseOverflowMenuIfOpen() { |
| 26 NOTIMPLEMENTED(); |
| 27 } |
| 28 #endif |
OLD | NEW |