| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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_GTK_LOCATION_BAR_VIEW_GTK_H_ | 5 #ifndef CHROME_BROWSER_UI_GTK_LOCATION_BAR_VIEW_GTK_H_ |
| 6 #define CHROME_BROWSER_UI_GTK_LOCATION_BAR_VIEW_GTK_H_ | 6 #define CHROME_BROWSER_UI_GTK_LOCATION_BAR_VIEW_GTK_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <gtk/gtk.h> | 9 #include <gtk/gtk.h> |
| 10 | 10 |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 content::PageTransition transition, | 110 content::PageTransition transition, |
| 111 const GURL& alternate_nav_url) OVERRIDE; | 111 const GURL& alternate_nav_url) OVERRIDE; |
| 112 virtual void OnChanged() OVERRIDE; | 112 virtual void OnChanged() OVERRIDE; |
| 113 virtual void OnSelectionBoundsChanged() OVERRIDE; | 113 virtual void OnSelectionBoundsChanged() OVERRIDE; |
| 114 virtual void OnKillFocus() OVERRIDE; | 114 virtual void OnKillFocus() OVERRIDE; |
| 115 virtual void OnSetFocus() OVERRIDE; | 115 virtual void OnSetFocus() OVERRIDE; |
| 116 virtual void OnInputInProgress(bool in_progress) OVERRIDE; | 116 virtual void OnInputInProgress(bool in_progress) OVERRIDE; |
| 117 virtual SkBitmap GetFavicon() const OVERRIDE; | 117 virtual SkBitmap GetFavicon() const OVERRIDE; |
| 118 virtual string16 GetTitle() const OVERRIDE; | 118 virtual string16 GetTitle() const OVERRIDE; |
| 119 virtual InstantController* GetInstant() OVERRIDE; | 119 virtual InstantController* GetInstant() OVERRIDE; |
| 120 virtual TabContentsWrapper* GetTabContentsWrapper() const OVERRIDE; | 120 virtual TabContents* GetTabContents() const OVERRIDE; |
| 121 | 121 |
| 122 // Implement the LocationBar interface. | 122 // Implement the LocationBar interface. |
| 123 virtual void ShowFirstRunBubble() OVERRIDE; | 123 virtual void ShowFirstRunBubble() OVERRIDE; |
| 124 virtual void SetSuggestedText(const string16& text, | 124 virtual void SetSuggestedText(const string16& text, |
| 125 InstantCompleteBehavior behavior) OVERRIDE; | 125 InstantCompleteBehavior behavior) OVERRIDE; |
| 126 virtual string16 GetInputString() const OVERRIDE; | 126 virtual string16 GetInputString() const OVERRIDE; |
| 127 virtual WindowOpenDisposition GetWindowOpenDisposition() const OVERRIDE; | 127 virtual WindowOpenDisposition GetWindowOpenDisposition() const OVERRIDE; |
| 128 virtual content::PageTransition GetPageTransition() const OVERRIDE; | 128 virtual content::PageTransition GetPageTransition() const OVERRIDE; |
| 129 virtual void AcceptInput() OVERRIDE; | 129 virtual void AcceptInput() OVERRIDE; |
| 130 virtual void FocusLocation(bool select_all) OVERRIDE; | 130 virtual void FocusLocation(bool select_all) OVERRIDE; |
| (...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 490 // The last search keyword that was shown via the |tab_to_search_box_|. | 490 // The last search keyword that was shown via the |tab_to_search_box_|. |
| 491 string16 last_keyword_; | 491 string16 last_keyword_; |
| 492 | 492 |
| 493 // Used to change the visibility of the star decoration. | 493 // Used to change the visibility of the star decoration. |
| 494 BooleanPrefMember edit_bookmarks_enabled_; | 494 BooleanPrefMember edit_bookmarks_enabled_; |
| 495 | 495 |
| 496 DISALLOW_COPY_AND_ASSIGN(LocationBarViewGtk); | 496 DISALLOW_COPY_AND_ASSIGN(LocationBarViewGtk); |
| 497 }; | 497 }; |
| 498 | 498 |
| 499 #endif // CHROME_BROWSER_UI_GTK_LOCATION_BAR_VIEW_GTK_H_ | 499 #endif // CHROME_BROWSER_UI_GTK_LOCATION_BAR_VIEW_GTK_H_ |
| OLD | NEW |