| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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_INTENTS_TABLE_H_ | 5 #ifndef CHROME_BROWSER_WEBDATA_WEB_INTENTS_TABLE_H_ |
| 6 #define CHROME_BROWSER_WEBDATA_WEB_INTENTS_TABLE_H_ | 6 #define CHROME_BROWSER_WEBDATA_WEB_INTENTS_TABLE_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/string16.h" | 12 #include "base/string16.h" |
| 13 #include "chrome/browser/webdata/web_database_table.h" | 13 #include "components/webdata/common/web_database_table.h" |
| 14 | 14 |
| 15 namespace sql { | 15 namespace sql { |
| 16 class Connection; | 16 class Connection; |
| 17 class MetaTable; | 17 class MetaTable; |
| 18 } | 18 } |
| 19 | 19 |
| 20 struct DefaultWebIntentService; | 20 struct DefaultWebIntentService; |
| 21 class WebDatabase; | 21 class WebDatabase; |
| 22 | 22 |
| 23 // TODO(thakis): Delete this class once there's a migration that drops the | 23 // TODO(thakis): Delete this class once there's a migration that drops the |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 bool* update_compatible_version) OVERRIDE; | 65 bool* update_compatible_version) OVERRIDE; |
| 66 | 66 |
| 67 // Adds "scheme" column to the web_intents and web_intents_defaults tables. | 67 // Adds "scheme" column to the web_intents and web_intents_defaults tables. |
| 68 bool MigrateToVersion46AddSchemeColumn(); | 68 bool MigrateToVersion46AddSchemeColumn(); |
| 69 | 69 |
| 70 private: | 70 private: |
| 71 DISALLOW_COPY_AND_ASSIGN(WebIntentsTable); | 71 DISALLOW_COPY_AND_ASSIGN(WebIntentsTable); |
| 72 }; | 72 }; |
| 73 | 73 |
| 74 #endif // CHROME_BROWSER_WEBDATA_WEB_INTENTS_TABLE_H_ | 74 #endif // CHROME_BROWSER_WEBDATA_WEB_INTENTS_TABLE_H_ |
| OLD | NEW |