Index: chrome/browser/browser_process_impl.h |
=================================================================== |
--- chrome/browser/browser_process_impl.h (revision 45984) |
+++ chrome/browser/browser_process_impl.h (working copy) |
@@ -195,9 +195,9 @@ |
virtual void CheckForInspectorFiles(); |
-#if defined(OS_WIN) |
+#if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS) |
void StartAutoupdateTimer(); |
-#endif // OS_WIN |
+#endif |
virtual bool have_inspector_files() const { |
return have_inspector_files_; |
@@ -314,7 +314,7 @@ |
// Our best estimate about the existence of the inspector directory. |
bool have_inspector_files_; |
-#if defined(OS_WIN) |
+#if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS) |
base::RepeatingTimer<BrowserProcessImpl> autoupdate_timer_; |
// Gets called by autoupdate timer to see if browser needs restart and can be |
@@ -322,7 +322,7 @@ |
void OnAutoupdateTimer(); |
bool CanAutorestartForUpdate() const; |
void RestartPersistentInstance(); |
-#endif // OS_WIN |
+#endif // defined(OS_WIN) || defined(OS_LINUX) |
DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
}; |