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

Unified Diff: chrome/browser/ui/media_stream_infobar_delegate.cc

Issue 9570012: Implement Linux Media Stream Infobar (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Add a missing file Created 8 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/media_stream_infobar_delegate.cc
diff --git a/chrome/browser/ui/media_stream_infobar_delegate.cc b/chrome/browser/ui/media_stream_infobar_delegate.cc
index ef7bab4ee6b854efde589e32308f3c8a3093c800..71af29c78c068be7c7e4a2d158ef759651efd9a9 100644
--- a/chrome/browser/ui/media_stream_infobar_delegate.cc
+++ b/chrome/browser/ui/media_stream_infobar_delegate.cc
@@ -111,12 +111,14 @@ void MediaStreamInfoBarDelegate::AddDeviceWithId(
// files.
#if !defined(TOOLKIT_VIEWS)
+#if !defined(OS_LINUX)
macourteau 2012/03/01 15:32:29 Please merge this with the above line: #if !define
// TODO(macourteau): This section is temporary, until the InfoBar is implemented
// on other platforms, to make sure everything compiles and links.
InfoBar* MediaStreamInfoBarDelegate::CreateInfoBar(InfoBarTabHelper* owner) {
DCHECK(owner);
return NULL;
}
+#endif // !OS_LINUX
macourteau 2012/03/01 15:32:29 Please merge with the line below: #endif // !TOOL
#endif // !TOOLKIT_VIEWS
void MediaStreamInfoBarDelegate::InfoBarDismissed() {

Powered by Google App Engine
This is Rietveld 408576698