Upload upstream chromium 73.0.3683.0
[platform/framework/web/chromium-efl.git] / sql / error_delegate_util.h
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
3 // found in the LICENSE file.
4
5 #ifndef SQL_ERROR_DELEGATE_UTIL_H_
6 #define SQL_ERROR_DELEGATE_UTIL_H_
7
8 #include <string>
9
10 #include "base/component_export.h"
11 #include "base/files/file_path.h"
12
13 namespace sql {
14
15 // Returns true if it is highly unlikely that the database can recover from
16 // |error|.
17 COMPONENT_EXPORT(SQL) bool IsErrorCatastrophic(int error);
18
19 // Gets diagnostic info of the given |corrupted_file_path| that can be appended
20 // to a corrupt database diagnostics info. The file info are not localized as
21 // it's meant to be added to feedback reports and used by developers.
22 // Also the full file path is not appended as it might contain some PII. Instead
23 // only the last two components of the path are appended to distinguish between
24 // default and user profiles.
25 COMPONENT_EXPORT(SQL)
26 std::string GetCorruptFileDiagnosticsInfo(
27     const base::FilePath& corrupted_file_path);
28
29 }  // namespace sql
30
31 #endif  // SQL_ERROR_DELEGATE_UTIL_H_