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

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

Issue 6633001: Convert autofill messages to use the new IPC macros (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #pragma once 7 #pragma once
8 8
9 #include <vector> 9 #include <vector>
10 10
(...skipping 14 matching lines...) Expand all
25 class NotificationService; 25 class NotificationService;
26 class SkBitmap; 26 class SkBitmap;
27 class TemplateURL; 27 class TemplateURL;
28 class WebDatabaseTest; 28 class WebDatabaseTest;
29 29
30 namespace base { 30 namespace base {
31 class Time; 31 class Time;
32 } 32 }
33 33
34 namespace webkit_glue { 34 namespace webkit_glue {
35 class FormField; 35 struct FormField;
36 struct PasswordForm; 36 struct PasswordForm;
37 } 37 }
38 38
39 #if defined(OS_WIN) 39 #if defined(OS_WIN)
40 struct IE7PasswordInfo; 40 struct IE7PasswordInfo;
41 #endif 41 #endif
42 42
43 //////////////////////////////////////////////////////////////////////////////// 43 ////////////////////////////////////////////////////////////////////////////////
44 // 44 //
45 // A Sqlite database instance to store all the meta data we have about web pages 45 // A Sqlite database instance to store all the meta data we have about web pages
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 352
353 sql::Connection db_; 353 sql::Connection db_;
354 sql::MetaTable meta_table_; 354 sql::MetaTable meta_table_;
355 355
356 scoped_ptr<NotificationService> notification_service_; 356 scoped_ptr<NotificationService> notification_service_;
357 357
358 DISALLOW_COPY_AND_ASSIGN(WebDatabase); 358 DISALLOW_COPY_AND_ASSIGN(WebDatabase);
359 }; 359 };
360 360
361 #endif // CHROME_BROWSER_WEBDATA_WEB_DATABASE_H_ 361 #endif // CHROME_BROWSER_WEBDATA_WEB_DATABASE_H_
OLDNEW
« no previous file with comments | « chrome/browser/autofill/select_control_handler_unittest.cc ('k') | chrome/browser/webdata/web_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698