Delay app cache check until flag file indicates that it is ready
[chromium-blink-merge.git] / chrome / browser / sxs_linux.h
blobcff48f27295763f19560f5b404c13f5488d42514
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_SXS_LINUX_H_
6 #define CHROME_BROWSER_SXS_LINUX_H_
8 #include "base/compiler_specific.h"
10 namespace base {
11 class FilePath;
14 namespace sxs_linux {
16 // Records channel of the running browser in user data dir. This is needed
17 // to support a seamless and automatic upgrade from non-side-by-side
18 // to side-by-side Linux packages (the latter use different default data dirs).
19 // Must be run on FILE thread.
20 void AddChannelMarkToUserDataDir();
22 // Returns true if user data dir migration has been requested.
23 bool ShouldMigrateUserDataDir() WARN_UNUSED_RESULT;
25 // Migrates user data dir to a side-by-side-compatible one.
26 // Returns exit code - caller should make the process exit with that code.
27 int MigrateUserDataDir() WARN_UNUSED_RESULT;
29 } // namespace sxs_linux
31 #endif // CHROME_BROWSER_SXS_LINUX_H_