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

Side by Side Diff: chrome/browser/ui/autofill/testable_autofill_dialog_view.h

Issue 135933003: rAc: split TestableAutofillDialogView implementation into its own class (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix stuff, sync Created 6 years, 10 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
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
groby-ooo-7-16 2014/01/28 20:54:14 I might be crazy, but shouldn't this file be marke
Evan Stade 2014/01/28 22:05:55 git cl is mysterious
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_AUTOFILL_TESTABLE_AUTOFILL_DIALOG_VIEW_H_
6 #define CHROME_BROWSER_UI_AUTOFILL_TESTABLE_AUTOFILL_DIALOG_VIEW_H_
7
8 namespace autofill {
9
10 // Functions that an AutofillDialogView implementation should implement in order
11 // to assist in unit testing.
12 class TestableAutofillDialogView {
13 public:
14 virtual ~TestableAutofillDialogView() {}
15
16 // Simulates the user pressing 'Submit' to accept the dialog.
17 virtual void SubmitForTesting() = 0;
18
19 // Simulates the user pressing 'Cancel' to abort the dialog.
20 virtual void CancelForTesting() = 0;
21
22 // Returns the actual contents of the input of |type|.
23 virtual base::string16 GetTextContentsOfInput(ServerFieldType type) = 0;
24
25 // Sets the actual contents of the input of |type|.
26 virtual void SetTextContentsOfInput(ServerFieldType type,
27 const base::string16& contents) = 0;
28
29 // Sets the content of the extra field for a section.
30 virtual void SetTextContentsOfSuggestionInput(DialogSection section,
31 const base::string16& text) = 0;
32
33 // Simulates a user activation of the input of |type|.
34 virtual void ActivateInput(ServerFieldType type) = 0;
35
36 // Get the size of the entire view.
37 virtual gfx::Size GetSize() const = 0;
38
39 // Get the web contents used to sign in to Google.
40 virtual content::WebContents* GetSignInWebContents() = 0;
41
42 // Whether the overlay is visible.
43 virtual bool IsShowingOverlay() const = 0;
44 };
45
46 } // namespace autofill
47
48 #endif // CHROME_BROWSER_UI_AUTOFILL_TESTABLE_AUTOFILL_DIALOG_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698