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 // 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__ |
(...skipping 13 matching lines...) Expand all Loading... |
24 #include "chrome/browser/search_engines/template_url.h" | 24 #include "chrome/browser/search_engines/template_url.h" |
25 #include "chrome/browser/search_engines/template_url_id.h" | 25 #include "chrome/browser/search_engines/template_url_id.h" |
26 #include "chrome/browser/webdata/keyword_table.h" | 26 #include "chrome/browser/webdata/keyword_table.h" |
27 #include "chrome/browser/webdata/web_database.h" | 27 #include "chrome/browser/webdata/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 MessageLoop; | |
35 class Profile; | 34 class Profile; |
36 class SkBitmap; | 35 class SkBitmap; |
37 class WebDatabaseService; | 36 class WebDatabaseService; |
38 | 37 |
39 namespace base { | 38 namespace base { |
40 class Thread; | 39 class Thread; |
41 } | 40 } |
42 | 41 |
43 namespace content { | 42 namespace content { |
44 class BrowserContext; | 43 class BrowserContext; |
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
323 WebDatabase::State RemoveIE7LoginImpl( | 322 WebDatabase::State RemoveIE7LoginImpl( |
324 const IE7PasswordInfo& info, WebDatabase* db); | 323 const IE7PasswordInfo& info, WebDatabase* db); |
325 scoped_ptr<WDTypedResult> GetIE7LoginImpl( | 324 scoped_ptr<WDTypedResult> GetIE7LoginImpl( |
326 const IE7PasswordInfo& info, WebDatabase* db); | 325 const IE7PasswordInfo& info, WebDatabase* db); |
327 #endif // defined(OS_WIN) | 326 #endif // defined(OS_WIN) |
328 | 327 |
329 DISALLOW_COPY_AND_ASSIGN(WebDataService); | 328 DISALLOW_COPY_AND_ASSIGN(WebDataService); |
330 }; | 329 }; |
331 | 330 |
332 #endif // CHROME_BROWSER_WEBDATA_WEB_DATA_SERVICE_H__ | 331 #endif // CHROME_BROWSER_WEBDATA_WEB_DATA_SERVICE_H__ |
OLD | NEW |