From 1c63dbdd3ff30c6f4423583e4cc35ad91203e5ed Mon Sep 17 00:00:00 2001 From: "thestig@chromium.org" Date: Wed, 20 Jun 2012 00:51:59 +0000 Subject: Media Gallery: Exclude MediaDeviceNotificationsLinux on ChromeOS, because it does not work on ChromeOS, where there is no way to get change notifications for the mtab file. There will be a ChromeOS-only implementation in an upcoming CL. BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10536214 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@143107 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/chrome_browser_main_linux.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'chrome/browser/chrome_browser_main_linux.h') diff --git a/chrome/browser/chrome_browser_main_linux.h b/chrome/browser/chrome_browser_main_linux.h index 6dd5093..531f6c036 100644 --- a/chrome/browser/chrome_browser_main_linux.h +++ b/chrome/browser/chrome_browser_main_linux.h @@ -12,9 +12,11 @@ #include "base/memory/ref_counted.h" #include "chrome/browser/chrome_browser_main_posix.h" +#if !defined(OS_CHROMEOS) namespace chrome { class MediaDeviceNotificationsLinux; } +#endif class ChromeBrowserMainPartsLinux : public ChromeBrowserMainPartsPosix { public: @@ -26,8 +28,10 @@ class ChromeBrowserMainPartsLinux : public ChromeBrowserMainPartsPosix { virtual void PreProfileInit() OVERRIDE; private: +#if !defined(OS_CHROMEOS) scoped_refptr media_device_notifications_linux_; +#endif DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsLinux); }; -- cgit v1.1