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

Side by Side Diff: components/autofill/content/browser/content_autofill_driver_factory.h

Issue 1931043002: Remove requestAutocomplete (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 7 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
OLDNEW
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 COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_FACTORY_H_ 5 #ifndef COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_FACTORY_H_
6 #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_FACTORY_H_ 6 #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_FACTORY_H_
7 7
8 #include <map> 8 #include <map>
9 #include <memory> 9 #include <memory>
10 #include <string> 10 #include <string>
11 11
12 #include "base/supports_user_data.h" 12 #include "base/supports_user_data.h"
13 #include "components/autofill/content/browser/request_autocomplete_manager.h"
14 #include "components/autofill/core/browser/autofill_manager.h" 13 #include "components/autofill/core/browser/autofill_manager.h"
15 #include "content/public/browser/web_contents_observer.h" 14 #include "content/public/browser/web_contents_observer.h"
16 15
17 namespace content { 16 namespace content {
18 class RenderFrameHost; 17 class RenderFrameHost;
19 } 18 }
20 19
21 namespace IPC { 20 namespace IPC {
22 class Message; 21 class Message;
23 } 22 }
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 std::string app_locale_; 72 std::string app_locale_;
74 AutofillManager::AutofillDownloadManagerState enable_download_manager_; 73 AutofillManager::AutofillDownloadManagerState enable_download_manager_;
75 74
76 std::map<content::RenderFrameHost*, std::unique_ptr<ContentAutofillDriver>> 75 std::map<content::RenderFrameHost*, std::unique_ptr<ContentAutofillDriver>>
77 frame_driver_map_; 76 frame_driver_map_;
78 }; 77 };
79 78
80 } // namespace autofill 79 } // namespace autofill
81 80
82 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_FACTORY_H _ 81 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_FACTORY_H _
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698