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

Side by Side Diff: components/autofill/content/renderer/autofill_agent.h

Issue 1474973002: Remove WebElementDescriptor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix BUILD files Created 5 years 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 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_CONTENT_RENDERER_AUTOFILL_AGENT_H_ 5 #ifndef COMPONENTS_AUTOFILL_CONTENT_RENDERER_AUTOFILL_AGENT_H_
6 #define COMPONENTS_AUTOFILL_CONTENT_RENDERER_AUTOFILL_AGENT_H_ 6 #define COMPONENTS_AUTOFILL_CONTENT_RENDERER_AUTOFILL_AGENT_H_
7 7
8 #include <set> 8 #include <set>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 12 matching lines...) Expand all
23 23
24 namespace blink { 24 namespace blink {
25 class WebNode; 25 class WebNode;
26 class WebView; 26 class WebView;
27 } 27 }
28 28
29 namespace autofill { 29 namespace autofill {
30 30
31 struct FormData; 31 struct FormData;
32 struct FormFieldData; 32 struct FormFieldData;
33 struct WebElementDescriptor;
34 class PasswordAutofillAgent; 33 class PasswordAutofillAgent;
35 class PasswordGenerationAgent; 34 class PasswordGenerationAgent;
36 35
37 // AutofillAgent deals with Autofill related communications between WebKit and 36 // AutofillAgent deals with Autofill related communications between WebKit and
38 // the browser. There is one AutofillAgent per RenderFrame. 37 // the browser. There is one AutofillAgent per RenderFrame.
39 // Note that Autofill encompasses: 38 // Note that Autofill encompasses:
40 // - single text field suggestions, that we usually refer to as Autocomplete, 39 // - single text field suggestions, that we usually refer to as Autocomplete,
41 // - password form fill, refered to as Password Autofill, and 40 // - password form fill, refered to as Password Autofill, and
42 // - entire form fill based on one field entry, referred to as Form Autofill. 41 // - entire form fill based on one field entry, referred to as Form Autofill.
43 42
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 bool is_generation_popup_possibly_visible_; 274 bool is_generation_popup_possibly_visible_;
276 275
277 base::WeakPtrFactory<AutofillAgent> weak_ptr_factory_; 276 base::WeakPtrFactory<AutofillAgent> weak_ptr_factory_;
278 277
279 DISALLOW_COPY_AND_ASSIGN(AutofillAgent); 278 DISALLOW_COPY_AND_ASSIGN(AutofillAgent);
280 }; 279 };
281 280
282 } // namespace autofill 281 } // namespace autofill
283 282
284 #endif // COMPONENTS_AUTOFILL_CONTENT_RENDERER_AUTOFILL_AGENT_H_ 283 #endif // COMPONENTS_AUTOFILL_CONTENT_RENDERER_AUTOFILL_AGENT_H_
OLDNEW
« no previous file with comments | « components/autofill/content/common/autofill_messages.h ('k') | components/autofill/content/renderer/autofill_agent.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698