diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-20 00:51:59 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-20 00:51:59 +0000 |
commit | 1c63dbdd3ff30c6f4423583e4cc35ad91203e5ed (patch) | |
tree | 1037486e0a94ac025e72577f763cb5892091ee7c /chrome/browser/chrome_browser_main_linux.h | |
parent | c566cb79b77ee9dfe3f287fb930c2e9e419793d3 (diff) | |
download | chromium_src-1c63dbdd3ff30c6f4423583e4cc35ad91203e5ed.zip chromium_src-1c63dbdd3ff30c6f4423583e4cc35ad91203e5ed.tar.gz chromium_src-1c63dbdd3ff30c6f4423583e4cc35ad91203e5ed.tar.bz2 |
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
Diffstat (limited to 'chrome/browser/chrome_browser_main_linux.h')
-rw-r--r-- | chrome/browser/chrome_browser_main_linux.h | 4 |
1 files changed, 4 insertions, 0 deletions
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<chrome::MediaDeviceNotificationsLinux> media_device_notifications_linux_; +#endif DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsLinux); }; |