| 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/string16.h" | 9 #include "base/string16.h" |
| 10 #include "chrome/browser/autocomplete/autocomplete_match.h" | 10 #include "chrome/browser/autocomplete/autocomplete_match.h" |
| 11 #include "chrome/common/notification_observer.h" | 11 #include "chrome/common/notification_observer.h" |
| 12 #include "chrome/common/notification_registrar.h" | 12 #include "chrome/common/notification_registrar.h" |
| 13 #include "chrome/common/page_transition_types.h" | 13 #include "chrome/common/page_transition_types.h" |
| 14 #include "gfx/native_widget_types.h" | |
| 15 #include "googleurl/src/gurl.h" | 14 #include "googleurl/src/gurl.h" |
| 15 #include "ui/gfx/native_widget_types.h" |
| 16 #include "webkit/glue/window_open_disposition.h" | 16 #include "webkit/glue/window_open_disposition.h" |
| 17 | 17 |
| 18 class AutocompletePopupModel; | 18 class AutocompletePopupModel; |
| 19 class Profile; | 19 class Profile; |
| 20 class SkBitmap; | 20 class SkBitmap; |
| 21 | 21 |
| 22 class AutocompleteEditController; | 22 class AutocompleteEditController; |
| 23 class AutocompleteEditModel; | 23 class AutocompleteEditModel; |
| 24 class AutocompleteEditView; | 24 class AutocompleteEditView; |
| 25 class AutocompleteResult; | 25 class AutocompleteResult; |
| (...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 491 mutable GURL paste_and_go_url_; | 491 mutable GURL paste_and_go_url_; |
| 492 mutable PageTransition::Type paste_and_go_transition_; | 492 mutable PageTransition::Type paste_and_go_transition_; |
| 493 mutable GURL paste_and_go_alternate_nav_url_; | 493 mutable GURL paste_and_go_alternate_nav_url_; |
| 494 | 494 |
| 495 Profile* profile_; | 495 Profile* profile_; |
| 496 | 496 |
| 497 DISALLOW_COPY_AND_ASSIGN(AutocompleteEditModel); | 497 DISALLOW_COPY_AND_ASSIGN(AutocompleteEditModel); |
| 498 }; | 498 }; |
| 499 | 499 |
| 500 #endif // CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_H_ | 500 #endif // CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_H_ |
| OLD | NEW |