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

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

Issue 1208133002: [Autofill/Autocomplete Feature] Substring matching instead of prefix matching. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added |match_start| usage. Created 5 years, 6 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 "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
(...skipping 24 matching lines...) Expand all
35 void PingRenderer() override; 35 void PingRenderer() override;
36 void PropagateAutofillPredictions( 36 void PropagateAutofillPredictions(
37 const std::vector<autofill::FormStructure*>& forms) override; 37 const std::vector<autofill::FormStructure*>& forms) override;
38 void SendAutofillTypePredictionsToRenderer( 38 void SendAutofillTypePredictionsToRenderer(
39 const std::vector<FormStructure*>& forms) override; 39 const std::vector<FormStructure*>& forms) override;
40 void RendererShouldAcceptDataListSuggestion( 40 void RendererShouldAcceptDataListSuggestion(
41 const base::string16& value) override; 41 const base::string16& value) override;
42 void RendererShouldClearFilledForm() override; 42 void RendererShouldClearFilledForm() override;
43 void RendererShouldClearPreviewedForm() override; 43 void RendererShouldClearPreviewedForm() override;
44 void RendererShouldFillFieldWithValue(const base::string16& value) override; 44 void RendererShouldFillFieldWithValue(const base::string16& value) override;
45 void RendererShouldPreviewFieldWithValue( 45 void RendererShouldPreviewFieldWithValue(const base::string16& value,
46 const base::string16& value) override; 46 size_t match_start) override;
47 void PopupHidden() override; 47 void PopupHidden() override;
48 48
49 // Methods that tests can use to specialize functionality. 49 // Methods that tests can use to specialize functionality.
50 50
51 // Sets the URL request context for this instance. |url_request_context| 51 // Sets the URL request context for this instance. |url_request_context|
52 // should outlive this instance. 52 // should outlive this instance.
53 void SetURLRequestContext(net::URLRequestContextGetter* url_request_context); 53 void SetURLRequestContext(net::URLRequestContextGetter* url_request_context);
54 54
55 private: 55 private:
56 scoped_ptr<base::SequencedWorkerPoolOwner> blocking_pool_owner_; 56 scoped_ptr<base::SequencedWorkerPoolOwner> blocking_pool_owner_;
57 net::URLRequestContextGetter* url_request_context_; 57 net::URLRequestContextGetter* url_request_context_;
58 58
59 DISALLOW_COPY_AND_ASSIGN(TestAutofillDriver); 59 DISALLOW_COPY_AND_ASSIGN(TestAutofillDriver);
60 }; 60 };
61 61
62 } // namespace autofill 62 } // namespace autofill
63 63
64 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_DRIVER_H_ 64 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_DRIVER_H_
OLDNEW
« no previous file with comments | « components/autofill/core/browser/suggestion.cc ('k') | components/autofill/core/browser/test_autofill_driver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698