| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_VIEW_GTK_H_ | 5 #ifndef CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_VIEW_GTK_H_ |
| 6 #define CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_VIEW_GTK_H_ | 6 #define CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_VIEW_GTK_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <gtk/gtk.h> | 9 #include <gtk/gtk.h> |
| 10 | 10 |
| 11 #include <algorithm> | 11 #include <algorithm> |
| 12 #include <string> | 12 #include <string> |
| 13 | 13 |
| 14 #include "app/gtk_signal.h" | 14 #include "app/gtk_signal.h" |
| 15 #include "app/gtk_signal_registrar.h" | 15 #include "app/gtk_signal_registrar.h" |
| 16 #include "base/basictypes.h" | 16 #include "base/basictypes.h" |
| 17 #include "base/scoped_ptr.h" | 17 #include "base/scoped_ptr.h" |
| 18 #include "base/string_util.h" | 18 #include "base/string_util.h" |
| 19 #include "chrome/browser/autocomplete/autocomplete_edit_view.h" | 19 #include "chrome/browser/autocomplete/autocomplete_edit_view.h" |
| 20 #include "chrome/browser/gtk/owned_widget_gtk.h" | 20 #include "chrome/browser/ui/gtk/owned_widget_gtk.h" |
| 21 #include "chrome/browser/ui/toolbar/toolbar_model.h" | 21 #include "chrome/browser/ui/toolbar/toolbar_model.h" |
| 22 #include "chrome/common/notification_observer.h" | 22 #include "chrome/common/notification_observer.h" |
| 23 #include "chrome/common/notification_registrar.h" | 23 #include "chrome/common/notification_registrar.h" |
| 24 #include "chrome/common/page_transition_types.h" | 24 #include "chrome/common/page_transition_types.h" |
| 25 #include "gfx/rect.h" | 25 #include "gfx/rect.h" |
| 26 #include "ui/base/animation/animation_delegate.h" | 26 #include "ui/base/animation/animation_delegate.h" |
| 27 #include "webkit/glue/window_open_disposition.h" | 27 #include "webkit/glue/window_open_disposition.h" |
| 28 | 28 |
| 29 class AccessibleWidgetHelper; | 29 class AccessibleWidgetHelper; |
| 30 class AutocompleteEditController; | 30 class AutocompleteEditController; |
| (...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 537 GtkSignalRegistrar signals_; | 537 GtkSignalRegistrar signals_; |
| 538 | 538 |
| 539 #if defined(TOOLKIT_VIEWS) | 539 #if defined(TOOLKIT_VIEWS) |
| 540 scoped_ptr<AccessibleWidgetHelper> accessible_widget_helper_; | 540 scoped_ptr<AccessibleWidgetHelper> accessible_widget_helper_; |
| 541 #endif | 541 #endif |
| 542 | 542 |
| 543 DISALLOW_COPY_AND_ASSIGN(AutocompleteEditViewGtk); | 543 DISALLOW_COPY_AND_ASSIGN(AutocompleteEditViewGtk); |
| 544 }; | 544 }; |
| 545 | 545 |
| 546 #endif // CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_VIEW_GTK_H_ | 546 #endif // CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_VIEW_GTK_H_ |
| OLD | NEW |