| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_KEYWORD_WEB_DATA_SERVICE_H__ | 5 #ifndef COMPONENTS_SEARCH_ENGINES_KEYWORD_WEB_DATA_SERVICE_H__ |
| 6 #define CHROME_BROWSER_WEBDATA_KEYWORD_WEB_DATA_SERVICE_H__ | 6 #define COMPONENTS_SEARCH_ENGINES_KEYWORD_WEB_DATA_SERVICE_H__ |
| 7 | 7 |
| 8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
| 9 #include "chrome/browser/webdata/keyword_table.h" | 9 #include "components/search_engines/keyword_table.h" |
| 10 #include "components/search_engines/template_url_id.h" | 10 #include "components/search_engines/template_url_id.h" |
| 11 #include "components/webdata/common/web_data_service_base.h" | 11 #include "components/webdata/common/web_data_service_base.h" |
| 12 #include "components/webdata/common/web_database.h" | 12 #include "components/webdata/common/web_database.h" |
| 13 | 13 |
| 14 namespace base { | 14 namespace base { |
| 15 class MessageLoopProxy; | 15 class MessageLoopProxy; |
| 16 } | 16 } |
| 17 | 17 |
| 18 class WDTypedResult; | 18 class WDTypedResult; |
| 19 class WebDatabaseService; | 19 class WebDatabaseService; |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 WebDatabase::State SetDefaultSearchProviderIDImpl(TemplateURLID id, | 100 WebDatabase::State SetDefaultSearchProviderIDImpl(TemplateURLID id, |
| 101 WebDatabase* db); | 101 WebDatabase* db); |
| 102 WebDatabase::State SetBuiltinKeywordVersionImpl(int version, WebDatabase* db); | 102 WebDatabase::State SetBuiltinKeywordVersionImpl(int version, WebDatabase* db); |
| 103 | 103 |
| 104 size_t batch_mode_level_; | 104 size_t batch_mode_level_; |
| 105 KeywordTable::Operations queued_keyword_operations_; | 105 KeywordTable::Operations queued_keyword_operations_; |
| 106 | 106 |
| 107 DISALLOW_COPY_AND_ASSIGN(KeywordWebDataService); | 107 DISALLOW_COPY_AND_ASSIGN(KeywordWebDataService); |
| 108 }; | 108 }; |
| 109 | 109 |
| 110 #endif // CHROME_BROWSER_WEBDATA_KEYWORD_WEB_DATA_SERVICE_H__ | 110 #endif // COMPONENTS_SEARCH_ENGINES_KEYWORD_WEB_DATA_SERVICE_H__ |
| OLD | NEW |