| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Contains functions used by BrowserMain() that are linux-specific. | 5 // Contains functions used by BrowserMain() that are linux-specific. |
| 6 | 6 |
| 7 #ifndef CHROME_BROWSER_CHROME_BROWSER_MAIN_LINUX_H_ | 7 #ifndef CHROME_BROWSER_CHROME_BROWSER_MAIN_LINUX_H_ |
| 8 #define CHROME_BROWSER_CHROME_BROWSER_MAIN_LINUX_H_ | 8 #define CHROME_BROWSER_CHROME_BROWSER_MAIN_LINUX_H_ |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 // ChromeBrowserMainParts overrides. | 30 // ChromeBrowserMainParts overrides. |
| 31 virtual void PreProfileInit() OVERRIDE; | 31 virtual void PreProfileInit() OVERRIDE; |
| 32 virtual void PostProfileInit() OVERRIDE; | 32 virtual void PostProfileInit() OVERRIDE; |
| 33 virtual void PostMainMessageLoopRun() OVERRIDE; | 33 virtual void PostMainMessageLoopRun() OVERRIDE; |
| 34 | 34 |
| 35 private: | 35 private: |
| 36 #if !defined(OS_CHROMEOS) | 36 #if !defined(OS_CHROMEOS) |
| 37 scoped_refptr<chrome::RemovableDeviceNotificationsLinux> | 37 scoped_refptr<chrome::RemovableDeviceNotificationsLinux> |
| 38 removable_device_notifications_linux_; | 38 removable_device_notifications_linux_; |
| 39 #endif | 39 #endif |
| 40 scoped_ptr<chrome::MediaTransferProtocolDeviceObserverLinux> | |
| 41 media_transfer_protocol_device_observer_; | |
| 42 bool initialized_media_transfer_protocol_manager_; | 40 bool initialized_media_transfer_protocol_manager_; |
| 43 | 41 |
| 44 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsLinux); | 42 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsLinux); |
| 45 }; | 43 }; |
| 46 | 44 |
| 47 #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_LINUX_H_ | 45 #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_LINUX_H_ |
| OLD | NEW |