Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Side by Side Diff: chrome/browser/ui/toolbar/media_router_action_platform_delegate.cc

Issue 1228223002: Close wrench menu when Media Router Action clicked in Views. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW
« no previous file with comments | « chrome/browser/ui/toolbar/media_router_action_platform_delegate.h ('k') | chrome/browser/ui/toolbar/toolbar_actions_bar.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698