| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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_UI_OMNIBOX_OMNIBOX_EDIT_MODEL_H_ | 5 #ifndef CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_EDIT_MODEL_H_ |
| 6 #define CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_EDIT_MODEL_H_ | 6 #define CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_EDIT_MODEL_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/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/strings/string16.h" | 11 #include "base/strings/string16.h" |
| 12 #include "base/time/time.h" | 12 #include "base/time/time.h" |
| 13 #include "chrome/browser/autocomplete/autocomplete_controller_delegate.h" | 13 #include "chrome/browser/autocomplete/autocomplete_controller_delegate.h" |
| 14 #include "chrome/browser/ui/omnibox/omnibox_controller.h" | 14 #include "chrome/browser/ui/omnibox/omnibox_controller.h" |
| 15 #include "chrome/common/instant_types.h" | 15 #include "chrome/common/instant_types.h" |
| 16 #include "chrome/common/omnibox_focus_state.h" | 16 #include "chrome/common/omnibox_focus_state.h" |
| 17 #include "components/autocomplete/autocomplete_input.h" | |
| 18 #include "components/autocomplete/autocomplete_match.h" | |
| 19 #include "components/metrics/proto/omnibox_event.pb.h" | 17 #include "components/metrics/proto/omnibox_event.pb.h" |
| 18 #include "components/omnibox/autocomplete_input.h" |
| 19 #include "components/omnibox/autocomplete_match.h" |
| 20 #include "content/public/common/page_transition_types.h" | 20 #include "content/public/common/page_transition_types.h" |
| 21 #include "ui/base/window_open_disposition.h" | 21 #include "ui/base/window_open_disposition.h" |
| 22 #include "ui/gfx/native_widget_types.h" | 22 #include "ui/gfx/native_widget_types.h" |
| 23 #include "url/gurl.h" | 23 #include "url/gurl.h" |
| 24 | 24 |
| 25 class AutocompleteController; | 25 class AutocompleteController; |
| 26 class AutocompleteResult; | 26 class AutocompleteResult; |
| 27 class OmniboxCurrentPageDelegate; | 27 class OmniboxCurrentPageDelegate; |
| 28 class OmniboxEditController; | 28 class OmniboxEditController; |
| 29 class OmniboxPopupModel; | 29 class OmniboxPopupModel; |
| (...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 557 | 557 |
| 558 // The input that was sent to the AutocompleteController. Since no | 558 // The input that was sent to the AutocompleteController. Since no |
| 559 // autocomplete query is started after a tab switch, it is possible for this | 559 // autocomplete query is started after a tab switch, it is possible for this |
| 560 // |input_| to differ from the one currently stored in AutocompleteController. | 560 // |input_| to differ from the one currently stored in AutocompleteController. |
| 561 AutocompleteInput input_; | 561 AutocompleteInput input_; |
| 562 | 562 |
| 563 DISALLOW_COPY_AND_ASSIGN(OmniboxEditModel); | 563 DISALLOW_COPY_AND_ASSIGN(OmniboxEditModel); |
| 564 }; | 564 }; |
| 565 | 565 |
| 566 #endif // CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_EDIT_MODEL_H_ | 566 #endif // CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_EDIT_MODEL_H_ |
| OLD | NEW |