| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_AUTOFILL_AUTOCOMPLETE_HISTORY_MANAGER_H_ |
| 6 #define CHROME_BROWSER_AUTOCOMPLETE_HISTORY_MANAGER_H_ | 6 #define CHROME_BROWSER_AUTOFILL_AUTOCOMPLETE_HISTORY_MANAGER_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/gtest_prod_util.h" | 10 #include "base/gtest_prod_util.h" |
| 11 #include "chrome/browser/prefs/pref_member.h" | 11 #include "chrome/browser/prefs/pref_member.h" |
| 12 #include "chrome/browser/webdata/web_data_service.h" | 12 #include "chrome/browser/webdata/web_data_service.h" |
| 13 #include "content/public/browser/web_contents_observer.h" | 13 #include "content/public/browser/web_contents_observer.h" |
| 14 | 14 |
| 15 namespace webkit { | 15 namespace webkit { |
| 16 namespace forms { | 16 namespace forms { |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 std::vector<string16> autofill_icons_; | 91 std::vector<string16> autofill_icons_; |
| 92 std::vector<int> autofill_unique_ids_; | 92 std::vector<int> autofill_unique_ids_; |
| 93 | 93 |
| 94 // Delegate to perform external processing (display, selection) on | 94 // Delegate to perform external processing (display, selection) on |
| 95 // our behalf. Weak. | 95 // our behalf. Weak. |
| 96 AutofillExternalDelegate* external_delegate_; | 96 AutofillExternalDelegate* external_delegate_; |
| 97 | 97 |
| 98 DISALLOW_COPY_AND_ASSIGN(AutocompleteHistoryManager); | 98 DISALLOW_COPY_AND_ASSIGN(AutocompleteHistoryManager); |
| 99 }; | 99 }; |
| 100 | 100 |
| 101 #endif // CHROME_BROWSER_AUTOCOMPLETE_HISTORY_MANAGER_H_ | 101 #endif // CHROME_BROWSER_AUTOFILL_AUTOCOMPLETE_HISTORY_MANAGER_H_ |
| OLD | NEW |