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

Side by Side Diff: chrome/browser/autocomplete_history_manager.h

Issue 4985003: Revert 66214 - Display a warning when autofill is disabled for a website.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 1 month 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
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/autocomplete_history_manager.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 CHROME_BROWSER_AUTOCOMPLETE_HISTORY_MANAGER_H_ 5 #ifndef CHROME_BROWSER_AUTOCOMPLETE_HISTORY_MANAGER_H_
6 #define CHROME_BROWSER_AUTOCOMPLETE_HISTORY_MANAGER_H_ 6 #define CHROME_BROWSER_AUTOCOMPLETE_HISTORY_MANAGER_H_
7 #pragma once 7 #pragma once
8 8
9 #include "chrome/browser/prefs/pref_member.h" 9 #include "chrome/browser/prefs/pref_member.h"
10 #include "chrome/browser/renderer_host/render_view_host_delegate.h" 10 #include "chrome/browser/renderer_host/render_view_host_delegate.h"
(...skipping 10 matching lines...) Expand all
21 // renderer and the storing and retrieving of form data through WebDataService. 21 // renderer and the storing and retrieving of form data through WebDataService.
22 class AutocompleteHistoryManager 22 class AutocompleteHistoryManager
23 : public RenderViewHostDelegate::Autocomplete, 23 : public RenderViewHostDelegate::Autocomplete,
24 public WebDataServiceConsumer { 24 public WebDataServiceConsumer {
25 public: 25 public:
26 explicit AutocompleteHistoryManager(TabContents* tab_contents); 26 explicit AutocompleteHistoryManager(TabContents* tab_contents);
27 virtual ~AutocompleteHistoryManager(); 27 virtual ~AutocompleteHistoryManager();
28 28
29 // RenderViewHostDelegate::Autocomplete implementation. 29 // RenderViewHostDelegate::Autocomplete implementation.
30 virtual void FormSubmitted(const webkit_glue::FormData& form); 30 virtual void FormSubmitted(const webkit_glue::FormData& form);
31 virtual void GetAutocompleteSuggestions(const string16& name, 31 virtual bool GetAutocompleteSuggestions(int query_id,
32 const string16& name,
32 const string16& prefix); 33 const string16& prefix);
33 virtual void RemoveAutocompleteEntry(const string16& name, 34 virtual void RemoveAutocompleteEntry(const string16& name,
34 const string16& value); 35 const string16& value);
35 36
36 // WebDataServiceConsumer implementation. 37 // WebDataServiceConsumer implementation.
37 virtual void OnWebDataServiceRequestDone(WebDataService::Handle h, 38 virtual void OnWebDataServiceRequestDone(WebDataService::Handle h,
38 const WDTypedResult* result); 39 const WDTypedResult* result);
39 40
40 protected: 41 protected:
41 friend class AutocompleteHistoryManagerTest; 42 friend class AutocompleteHistoryManagerTest;
42 43
43 // For tests. 44 // For tests.
44 AutocompleteHistoryManager(Profile* profile, WebDataService* wds); 45 AutocompleteHistoryManager(Profile* profile, WebDataService* wds);
45 46
46 private: 47 private:
47 void CancelPendingQuery(); 48 void CancelPendingQuery();
48 void StoreFormEntriesInWebDatabase(const webkit_glue::FormData& form); 49 void StoreFormEntriesInWebDatabase(const webkit_glue::FormData& form);
49 void SendSuggestions(const WDTypedResult* suggestions); 50 void SendSuggestions(const WDTypedResult* suggestions);
50 51
51 TabContents* tab_contents_; 52 TabContents* tab_contents_;
52 Profile* profile_; 53 Profile* profile_;
53 scoped_refptr<WebDataService> web_data_service_; 54 scoped_refptr<WebDataService> web_data_service_;
54 55
55 BooleanPrefMember autofill_enabled_; 56 BooleanPrefMember autofill_enabled_;
56 57
57 // When the manager makes a request from WebDataService, the database 58 // When the manager makes a request from WebDataService, the database
58 // is queried on another thread, we record the query handle until we 59 // is queried on another thread, we record the query handle until we
59 // get called back. 60 // get called back.
60 WebDataService::Handle pending_query_handle_; 61 WebDataService::Handle pending_query_handle_;
62 int query_id_;
61 63
62 DISALLOW_COPY_AND_ASSIGN(AutocompleteHistoryManager); 64 DISALLOW_COPY_AND_ASSIGN(AutocompleteHistoryManager);
63 }; 65 };
64 66
65 #endif // CHROME_BROWSER_AUTOCOMPLETE_HISTORY_MANAGER_H_ 67 #endif // CHROME_BROWSER_AUTOCOMPLETE_HISTORY_MANAGER_H_
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/autocomplete_history_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698