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

Side by Side Diff: components/autofill/core/browser/autofill_driver.h

Issue 184103016: Autofill: Refactoring to support fetching password after a username is selected (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address gcasto's comments. Created 6 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 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_CORE_BROWSER_AUTOFILL_DRIVER_H_ 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_DRIVER_H_
6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_DRIVER_H_ 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_DRIVER_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "components/autofill/core/common/form_data.h" 10 #include "components/autofill/core/common/form_data.h"
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 // method is a no-op if the renderer is not available or the appropriate 64 // method is a no-op if the renderer is not available or the appropriate
65 // command-line flag is not set. 65 // command-line flag is not set.
66 virtual void SendAutofillTypePredictionsToRenderer( 66 virtual void SendAutofillTypePredictionsToRenderer(
67 const std::vector<FormStructure*>& forms) = 0; 67 const std::vector<FormStructure*>& forms) = 0;
68 68
69 // Tells the renderer to accept data list suggestions for |value|. 69 // Tells the renderer to accept data list suggestions for |value|.
70 virtual void RendererShouldAcceptDataListSuggestion( 70 virtual void RendererShouldAcceptDataListSuggestion(
71 const base::string16& value) = 0; 71 const base::string16& value) = 0;
72 72
73 // Tells the renderer to accept the password autofill suggestion for 73 // Tells the renderer to accept the password autofill suggestion for
74 // |username|. 74 // |username| and fill the password with |password|.
75 virtual void RendererShouldAcceptPasswordAutofillSuggestion( 75 virtual void RendererShouldAcceptPasswordAutofillSuggestion(
76 const base::string16& username) = 0; 76 const base::string16& username,
77 const base::string16& password) = 0;
77 78
78 // Tells the renderer to clear the currently filled Autofill results. 79 // Tells the renderer to clear the currently filled Autofill results.
79 virtual void RendererShouldClearFilledForm() = 0; 80 virtual void RendererShouldClearFilledForm() = 0;
80 81
81 // Tells the renderer to clear the currently previewed Autofill results. 82 // Tells the renderer to clear the currently previewed Autofill results.
82 virtual void RendererShouldClearPreviewedForm() = 0; 83 virtual void RendererShouldClearPreviewedForm() = 0;
83 84
84 // Tells the renderer to set the node text. 85 // Tells the renderer to set the node text.
85 virtual void RendererShouldSetNodeText(const base::string16& value) = 0; 86 virtual void RendererShouldSetNodeText(const base::string16& value) = 0;
86 }; 87 };
87 88
88 } // namespace autofill 89 } // namespace autofill
89 90
90 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_DRIVER_H_ 91 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_DRIVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698