Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
|
Lei Zhang
2016/08/19 18:15:02
Is there no appropriate chrome/browser/foo sub-dir
afakhry
2016/08/19 20:07:50
Couldn't find any suitable one. :(
afakhry
2016/08/20 00:54:11
Any suggestions though?
Lei Zhang
2016/08/20 01:17:52
c/b/profiles maybe?
afakhry
2016/08/20 02:00:02
Done.
| |
| 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 CHROME_BROWSER_SQL_INIT_ERROR_MESSAGE_IDS_H_ | |
| 6 #define CHROME_BROWSER_SQL_INIT_ERROR_MESSAGE_IDS_H_ | |
| 7 | |
| 8 #include "sql/init_status.h" | |
| 9 | |
| 10 // Gets the ID of the localized error message that will be shown in the profile | |
| 11 // error dialog which corresponds to the SQL initialization |status|. | |
| 12 int SqlInitStatusToMessageId(sql::InitStatus status); | |
| 13 | |
| 14 #endif // CHROME_BROWSER_SQL_INIT_ERROR_MESSAGE_IDS_H_ | |
| OLD | NEW |