| OLD | NEW |
| 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_AUTOCOMPLETE_EDIT_H_ | 5 #ifndef CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_H_ |
| 6 #define CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_H_ | 6 #define CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/scoped_ptr.h" | 9 #include "base/scoped_ptr.h" |
| 10 #include "base/string16.h" | 10 #include "base/string16.h" |
| 11 #include "chrome/browser/autocomplete/autocomplete_controller_delegate.h" | 11 #include "chrome/browser/autocomplete/autocomplete_controller_delegate.h" |
| 12 #include "chrome/browser/autocomplete/autocomplete_match.h" | 12 #include "chrome/browser/autocomplete/autocomplete_match.h" |
| 13 #include "chrome/common/instant_types.h" | 13 #include "chrome/common/instant_types.h" |
| 14 #include "chrome/common/page_transition_types.h" | 14 #include "content/common/page_transition_types.h" |
| 15 #include "googleurl/src/gurl.h" | 15 #include "googleurl/src/gurl.h" |
| 16 #include "ui/gfx/native_widget_types.h" | 16 #include "ui/gfx/native_widget_types.h" |
| 17 #include "webkit/glue/window_open_disposition.h" | 17 #include "webkit/glue/window_open_disposition.h" |
| 18 | 18 |
| 19 class AutocompleteController; | 19 class AutocompleteController; |
| 20 class AutocompleteEditController; | 20 class AutocompleteEditController; |
| 21 class AutocompleteEditModel; | 21 class AutocompleteEditModel; |
| 22 class AutocompleteEditView; | 22 class AutocompleteEditView; |
| 23 class AutocompletePopupModel; | 23 class AutocompletePopupModel; |
| 24 class AutocompleteResult; | 24 class AutocompleteResult; |
| (...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 531 // happening. | 531 // happening. |
| 532 bool update_instant_; | 532 bool update_instant_; |
| 533 | 533 |
| 534 // Last value of InstantCompleteBehavior supplied to |SetSuggestedText|. | 534 // Last value of InstantCompleteBehavior supplied to |SetSuggestedText|. |
| 535 InstantCompleteBehavior instant_complete_behavior_; | 535 InstantCompleteBehavior instant_complete_behavior_; |
| 536 | 536 |
| 537 DISALLOW_COPY_AND_ASSIGN(AutocompleteEditModel); | 537 DISALLOW_COPY_AND_ASSIGN(AutocompleteEditModel); |
| 538 }; | 538 }; |
| 539 | 539 |
| 540 #endif // CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_H_ | 540 #endif // CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_H_ |
| OLD | NEW |