| Index: chrome/browser/ui/toolbar/media_router_action_platform_delegate.cc
|
| diff --git a/chrome/browser/ui/toolbar/media_router_action_platform_delegate.cc b/chrome/browser/ui/toolbar/media_router_action_platform_delegate.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..34857719ee20d753e94dbeca592de2c0d5705ca8
|
| --- /dev/null
|
| +++ b/chrome/browser/ui/toolbar/media_router_action_platform_delegate.cc
|
| @@ -0,0 +1,28 @@
|
| +// 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.
|
| +
|
| +#include "base/logging.h"
|
| +#include "chrome/browser/ui/toolbar/media_router_action_platform_delegate.h"
|
| +
|
| +#if defined(OS_MACOSX)
|
| +// static
|
| +scoped_ptr<MediaRouterActionPlatformDelegate>
|
| +MediaRouterActionPlatformDelegate::Create(Browser* browser) {
|
| + return nullptr;
|
| +}
|
| +#endif
|
| +
|
| +MediaRouterActionPlatformDelegate::MediaRouterActionPlatformDelegate() {
|
| +}
|
| +
|
| +#if defined(OS_MACOSX)
|
| +MediaRouterActionPlatformDelegate::MediaRouterActionPlatformDelegate(
|
| + Browser* browser) {
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| +void MediaRouterActionPlatformDelegate::CloseOverflowMenuIfOpen() {
|
| + NOTIMPLEMENTED();
|
| +}
|
| +#endif
|
|
|