Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(194)

Side by Side Diff: chrome/browser/webdata/web_data_service.h

Issue 13392014: Move c/b/webdata/ code to components/webdata/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Pure merge Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 // Chromium settings and storage represent user-selected preferences and 5 // Chromium settings and storage represent user-selected preferences and
6 // information and MUST not be extracted, overwritten or modified except 6 // information and MUST not be extracted, overwritten or modified except
7 // through Chromium defined APIs. 7 // through Chromium defined APIs.
8 8
9 #ifndef CHROME_BROWSER_WEBDATA_WEB_DATA_SERVICE_H__ 9 #ifndef CHROME_BROWSER_WEBDATA_WEB_DATA_SERVICE_H__
10 #define CHROME_BROWSER_WEBDATA_WEB_DATA_SERVICE_H__ 10 #define CHROME_BROWSER_WEBDATA_WEB_DATA_SERVICE_H__
11 11
12 #include <map> 12 #include <map>
13 #include <string> 13 #include <string>
14 #include <vector> 14 #include <vector>
15 15
16 #include "base/callback_forward.h" 16 #include "base/callback_forward.h"
17 #include "base/files/file_path.h" 17 #include "base/files/file_path.h"
18 #include "base/location.h" 18 #include "base/location.h"
19 #include "base/memory/ref_counted.h" 19 #include "base/memory/ref_counted.h"
20 #include "base/sequenced_task_runner_helpers.h" 20 #include "base/sequenced_task_runner_helpers.h"
21 #include "chrome/browser/api/webdata/web_data_results.h"
22 #include "chrome/browser/api/webdata/web_data_service_base.h"
23 #include "chrome/browser/api/webdata/web_data_service_consumer.h"
24 #include "chrome/browser/search_engines/template_url.h" 21 #include "chrome/browser/search_engines/template_url.h"
25 #include "chrome/browser/search_engines/template_url_id.h" 22 #include "chrome/browser/search_engines/template_url_id.h"
26 #include "chrome/browser/webdata/keyword_table.h" 23 #include "chrome/browser/webdata/keyword_table.h"
27 #include "chrome/browser/webdata/web_database.h" 24 #include "components/webdata/common/web_data_results.h"
25 #include "components/webdata/common/web_data_service_base.h"
26 #include "components/webdata/common/web_data_service_consumer.h"
27 #include "components/webdata/common/web_database.h"
28 28
29 struct DefaultWebIntentService; 29 struct DefaultWebIntentService;
30 class GURL; 30 class GURL;
31 #if defined(OS_WIN) 31 #if defined(OS_WIN)
32 struct IE7PasswordInfo; 32 struct IE7PasswordInfo;
33 #endif 33 #endif
34 class Profile; 34 class Profile;
35 class SkBitmap; 35 class SkBitmap;
36 class WebDatabaseService; 36 class WebDatabaseService;
37 37
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 WebDatabase::State RemoveIE7LoginImpl( 322 WebDatabase::State RemoveIE7LoginImpl(
323 const IE7PasswordInfo& info, WebDatabase* db); 323 const IE7PasswordInfo& info, WebDatabase* db);
324 scoped_ptr<WDTypedResult> GetIE7LoginImpl( 324 scoped_ptr<WDTypedResult> GetIE7LoginImpl(
325 const IE7PasswordInfo& info, WebDatabase* db); 325 const IE7PasswordInfo& info, WebDatabase* db);
326 #endif // defined(OS_WIN) 326 #endif // defined(OS_WIN)
327 327
328 DISALLOW_COPY_AND_ASSIGN(WebDataService); 328 DISALLOW_COPY_AND_ASSIGN(WebDataService);
329 }; 329 };
330 330
331 #endif // CHROME_BROWSER_WEBDATA_WEB_DATA_SERVICE_H__ 331 #endif // CHROME_BROWSER_WEBDATA_WEB_DATA_SERVICE_H__
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698