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

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

Issue 18693005: Move AutofillMsg_ClearPreviewedForm IPC send to AutofillDriverImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Response to review Created 7 years, 5 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 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_TEST_AUTOFILL_DRIVER_H_ 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_DRIVER_H_
6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_DRIVER_H_ 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_DRIVER_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "components/autofill/core/browser/autofill_driver.h" 10 #include "components/autofill/core/browser/autofill_driver.h"
(...skipping 13 matching lines...) Expand all
24 24
25 // AutofillDriver implementation. 25 // AutofillDriver implementation.
26 virtual content::WebContents* GetWebContents() OVERRIDE; 26 virtual content::WebContents* GetWebContents() OVERRIDE;
27 virtual bool RendererIsAvailable() OVERRIDE; 27 virtual bool RendererIsAvailable() OVERRIDE;
28 virtual void SetRendererActionOnFormDataReception( 28 virtual void SetRendererActionOnFormDataReception(
29 RendererFormDataAction action) OVERRIDE; 29 RendererFormDataAction action) OVERRIDE;
30 virtual void SendFormDataToRenderer(int query_id, 30 virtual void SendFormDataToRenderer(int query_id,
31 const FormData& data) OVERRIDE; 31 const FormData& data) OVERRIDE;
32 virtual void SendAutofillTypePredictionsToRenderer( 32 virtual void SendAutofillTypePredictionsToRenderer(
33 const std::vector<FormStructure*>& forms) OVERRIDE; 33 const std::vector<FormStructure*>& forms) OVERRIDE;
34 virtual void RendererShouldClearForm() OVERRIDE; 34 virtual void RendererShouldClearFilledForm() OVERRIDE;
35 virtual void RendererShouldClearPreviewedForm() OVERRIDE;
35 36
36 private: 37 private:
37 DISALLOW_COPY_AND_ASSIGN(TestAutofillDriver); 38 DISALLOW_COPY_AND_ASSIGN(TestAutofillDriver);
38 }; 39 };
39 40
40 } // namespace autofill 41 } // namespace autofill
41 42
42 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_DRIVER_H_ 43 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_DRIVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698