| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 #ifndef CHROME_BROWSER_WEBDATA_WEB_DATABASE_H__ | 5 #ifndef CHROME_BROWSER_WEBDATA_WEB_DATABASE_H__ |
| 6 #define CHROME_BROWSER_WEBDATA_WEB_DATABASE_H__ | 6 #define CHROME_BROWSER_WEBDATA_WEB_DATABASE_H__ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "chrome/browser/meta_table_helper.h" | 12 #include "chrome/browser/meta_table_helper.h" |
| 13 #include "chrome/browser/search_engines/template_url.h" | 13 #include "chrome/browser/search_engines/template_url.h" |
| 14 #include "chrome/common/sqlite_utils.h" | 14 #include "chrome/common/sqlite_utils.h" |
| 15 #include "skia/include/SkBitmap.h" | 15 #include "skia/include/SkBitmap.h" |
| 16 #include "testing/gtest/include/gtest/gtest_prod.h" |
| 16 #include "webkit/glue/autofill_form.h" | 17 #include "webkit/glue/autofill_form.h" |
| 17 | 18 |
| 18 namespace base { | 19 namespace base { |
| 19 class Time; | 20 class Time; |
| 20 } | 21 } |
| 21 struct PasswordForm; | 22 struct PasswordForm; |
| 22 #if defined(OS_WIN) | 23 #if defined(OS_WIN) |
| 23 struct IE7PasswordInfo; | 24 struct IE7PasswordInfo; |
| 24 #endif | 25 #endif |
| 25 | 26 |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 void MigrateOldVersionsAsNeeded(); | 213 void MigrateOldVersionsAsNeeded(); |
| 213 | 214 |
| 214 sqlite3* db_; | 215 sqlite3* db_; |
| 215 int transaction_nesting_; | 216 int transaction_nesting_; |
| 216 MetaTableHelper meta_table_; | 217 MetaTableHelper meta_table_; |
| 217 | 218 |
| 218 DISALLOW_COPY_AND_ASSIGN(WebDatabase); | 219 DISALLOW_COPY_AND_ASSIGN(WebDatabase); |
| 219 }; | 220 }; |
| 220 | 221 |
| 221 #endif // CHROME_BROWSER_WEBDATA_WEB_DATABASE_H__ | 222 #endif // CHROME_BROWSER_WEBDATA_WEB_DATABASE_H__ |
| OLD | NEW |