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

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

Issue 707173004: Refactor Autofill for out of process iframes (OOPIF). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mem leak Created 6 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 #include "components/autofill/core/browser/test_autofill_driver.h" 5 #include "components/autofill/core/browser/test_autofill_driver.h"
6 6
7 #include "base/test/sequenced_worker_pool_owner.h" 7 #include "base/test/sequenced_worker_pool_owner.h"
8 #include "base/threading/sequenced_worker_pool.h" 8 #include "base/threading/sequenced_worker_pool.h"
9 9
10 namespace autofill { 10 namespace autofill {
(...skipping 21 matching lines...) Expand all
32 32
33 bool TestAutofillDriver::RendererIsAvailable() { 33 bool TestAutofillDriver::RendererIsAvailable() {
34 return true; 34 return true;
35 } 35 }
36 36
37 void TestAutofillDriver::SendFormDataToRenderer(int query_id, 37 void TestAutofillDriver::SendFormDataToRenderer(int query_id,
38 RendererFormDataAction action, 38 RendererFormDataAction action,
39 const FormData& form_data) { 39 const FormData& form_data) {
40 } 40 }
41 41
42 void TestAutofillDriver::PingRenderer() {} 42 void TestAutofillDriver::PingRenderer() {
43 }
44
45 void TestAutofillDriver::DetectAccountCreationForms(
46 const std::vector<autofill::FormStructure*>& forms) {
47 }
43 48
44 void TestAutofillDriver::SendAutofillTypePredictionsToRenderer( 49 void TestAutofillDriver::SendAutofillTypePredictionsToRenderer(
45 const std::vector<FormStructure*>& forms) { 50 const std::vector<FormStructure*>& forms) {
46 } 51 }
47 52
48 void TestAutofillDriver::RendererShouldAcceptDataListSuggestion( 53 void TestAutofillDriver::RendererShouldAcceptDataListSuggestion(
49 const base::string16& value) { 54 const base::string16& value) {
50 } 55 }
51 56
52 void TestAutofillDriver::RendererShouldClearFilledForm() { 57 void TestAutofillDriver::RendererShouldClearFilledForm() {
53 } 58 }
54 59
55 void TestAutofillDriver::RendererShouldClearPreviewedForm() { 60 void TestAutofillDriver::RendererShouldClearPreviewedForm() {
56 } 61 }
57 62
58 void TestAutofillDriver::SetURLRequestContext( 63 void TestAutofillDriver::SetURLRequestContext(
59 net::URLRequestContextGetter* url_request_context) { 64 net::URLRequestContextGetter* url_request_context) {
60 url_request_context_ = url_request_context; 65 url_request_context_ = url_request_context;
61 } 66 }
62 67
63 void TestAutofillDriver::RendererShouldFillFieldWithValue( 68 void TestAutofillDriver::RendererShouldFillFieldWithValue(
64 const base::string16& value) { 69 const base::string16& value) {
65 } 70 }
66 71
67 void TestAutofillDriver::RendererShouldPreviewFieldWithValue( 72 void TestAutofillDriver::RendererShouldPreviewFieldWithValue(
68 const base::string16& value) { 73 const base::string16& value) {
69 } 74 }
70 75
71 } // namespace autofill 76 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698