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 "chrome/browser/autocomplete/autocomplete.h" | 9 #include "chrome/browser/autocomplete/autocomplete.h" |
| 10 #include "chrome/common/notification_observer.h" |
10 #include "chrome/common/notification_registrar.h" | 11 #include "chrome/common/notification_registrar.h" |
11 #include "chrome/common/page_transition_types.h" | 12 #include "chrome/common/page_transition_types.h" |
12 #include "googleurl/src/gurl.h" | 13 #include "googleurl/src/gurl.h" |
13 #include "webkit/glue/window_open_disposition.h" | 14 #include "webkit/glue/window_open_disposition.h" |
14 | 15 |
15 class AutocompletePopupModel; | 16 class AutocompletePopupModel; |
16 class Profile; | 17 class Profile; |
17 class SkBitmap; | 18 class SkBitmap; |
18 | 19 |
19 class AutocompleteEditController; | 20 class AutocompleteEditController; |
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
436 mutable GURL paste_and_go_url_; | 437 mutable GURL paste_and_go_url_; |
437 mutable PageTransition::Type paste_and_go_transition_; | 438 mutable PageTransition::Type paste_and_go_transition_; |
438 mutable GURL paste_and_go_alternate_nav_url_; | 439 mutable GURL paste_and_go_alternate_nav_url_; |
439 | 440 |
440 Profile* profile_; | 441 Profile* profile_; |
441 | 442 |
442 DISALLOW_COPY_AND_ASSIGN(AutocompleteEditModel); | 443 DISALLOW_COPY_AND_ASSIGN(AutocompleteEditModel); |
443 }; | 444 }; |
444 | 445 |
445 #endif // CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_H_ | 446 #endif // CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_H_ |
OLD | NEW |