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

Side by Side Diff: components/autofill/core/browser/webdata/autofill_webdata_backend_impl.h

Issue 17392006: In components/autofill, move browser/ to core/browser/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to fix conflicts Created 7 years, 6 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 COMPONENTS_AUTOFILL_BROWSER_WEBDATA_AUTOFILL_WEBDATA_BACKEND_IMPL_H_ 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WEBDATA_BACKEND_IMPL_H _
6 #define COMPONENTS_AUTOFILL_BROWSER_WEBDATA_AUTOFILL_WEBDATA_BACKEND_IMPL_H_ 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WEBDATA_BACKEND_IMPL_H _
7 7
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/observer_list.h" 10 #include "base/observer_list.h"
11 #include "base/supports_user_data.h" 11 #include "base/supports_user_data.h"
12 #include "components/autofill/browser/webdata/autofill_webdata.h" 12 #include "components/autofill/core/browser/webdata/autofill_webdata.h"
13 #include "components/autofill/browser/webdata/autofill_webdata_backend.h" 13 #include "components/autofill/core/browser/webdata/autofill_webdata_backend.h"
14 #include "components/autofill/core/common/form_field_data.h" 14 #include "components/autofill/core/common/form_field_data.h"
15 #include "components/webdata/common/web_data_results.h" 15 #include "components/webdata/common/web_data_results.h"
16 #include "components/webdata/common/web_data_service_base.h" 16 #include "components/webdata/common/web_data_service_base.h"
17 #include "components/webdata/common/web_data_service_consumer.h" 17 #include "components/webdata/common/web_data_service_consumer.h"
18 #include "components/webdata/common/web_database.h" 18 #include "components/webdata/common/web_database.h"
19 #include "content/public/browser/browser_thread.h" 19 #include "content/public/browser/browser_thread.h"
20 20
21 class WebDataServiceBackend; 21 class WebDataServiceBackend;
22 22
23 namespace autofill { 23 namespace autofill {
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 // TODO(caitkp): Make it so nobody but us needs direct DB access anymore. 175 // TODO(caitkp): Make it so nobody but us needs direct DB access anymore.
176 scoped_refptr<WebDataServiceBackend> web_database_backend_; 176 scoped_refptr<WebDataServiceBackend> web_database_backend_;
177 177
178 base::Closure on_changed_callback_; 178 base::Closure on_changed_callback_;
179 179
180 DISALLOW_COPY_AND_ASSIGN(AutofillWebDataBackendImpl); 180 DISALLOW_COPY_AND_ASSIGN(AutofillWebDataBackendImpl);
181 }; 181 };
182 182
183 } // namespace autofill 183 } // namespace autofill
184 184
185 #endif // COMPONENTS_AUTOFILL_BROWSER_WEBDATA_AUTOFILL_WEBDATA_BACKEND_IMPL_H_ 185 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WEBDATA_BACKEND_IMP L_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698