| 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" |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "chrome/browser/cancelable_request.h" | |
| 13 #include "chrome/browser/chrome_browser_main_posix.h" | 12 #include "chrome/browser/chrome_browser_main_posix.h" |
| 13 #include "chrome/browser/common/cancelable_request.h" |
| 14 | 14 |
| 15 #if defined(OS_CHROMEOS) | 15 #if defined(OS_CHROMEOS) |
| 16 #include "chrome/browser/chromeos/version_loader.h" | 16 #include "chrome/browser/chromeos/version_loader.h" |
| 17 #endif | 17 #endif |
| 18 | 18 |
| 19 #if !defined(OS_CHROMEOS) | 19 #if !defined(OS_CHROMEOS) |
| 20 namespace chrome { | 20 namespace chrome { |
| 21 class RemovableDeviceNotificationsLinux; | 21 class RemovableDeviceNotificationsLinux; |
| 22 } | 22 } |
| 23 #endif | 23 #endif |
| (...skipping 16 matching lines...) Expand all Loading... |
| 40 | 40 |
| 41 #if defined(OS_CHROMEOS) | 41 #if defined(OS_CHROMEOS) |
| 42 chromeos::VersionLoader cros_version_loader_; | 42 chromeos::VersionLoader cros_version_loader_; |
| 43 CancelableRequestConsumer cros_consumer_; | 43 CancelableRequestConsumer cros_consumer_; |
| 44 #endif | 44 #endif |
| 45 | 45 |
| 46 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsLinux); | 46 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsLinux); |
| 47 }; | 47 }; |
| 48 | 48 |
| 49 #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_LINUX_H_ | 49 #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_LINUX_H_ |
| OLD | NEW |