| 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 | 7 |
| 8 #include <gtk/gtk.h> | 8 #include <gtk/gtk.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 virtual string16 GetInputString() const OVERRIDE; | 129 virtual string16 GetInputString() const OVERRIDE; |
| 130 virtual WindowOpenDisposition GetWindowOpenDisposition() const OVERRIDE; | 130 virtual WindowOpenDisposition GetWindowOpenDisposition() const OVERRIDE; |
| 131 virtual content::PageTransition GetPageTransition() const OVERRIDE; | 131 virtual content::PageTransition GetPageTransition() const OVERRIDE; |
| 132 virtual void AcceptInput() OVERRIDE; | 132 virtual void AcceptInput() OVERRIDE; |
| 133 virtual void FocusLocation(bool select_all) OVERRIDE; | 133 virtual void FocusLocation(bool select_all) OVERRIDE; |
| 134 virtual void FocusSearch() OVERRIDE; | 134 virtual void FocusSearch() OVERRIDE; |
| 135 virtual void UpdateContentSettingsIcons() OVERRIDE; | 135 virtual void UpdateContentSettingsIcons() OVERRIDE; |
| 136 virtual void UpdatePageActions() OVERRIDE; | 136 virtual void UpdatePageActions() OVERRIDE; |
| 137 virtual void InvalidatePageActions() OVERRIDE; | 137 virtual void InvalidatePageActions() OVERRIDE; |
| 138 virtual void UpdateOpenPDFInReaderPrompt() OVERRIDE; | 138 virtual void UpdateOpenPDFInReaderPrompt() OVERRIDE; |
| 139 virtual void UpdateAutofillCreditCardView() OVERRIDE; | 139 virtual void UpdateGeneratedCreditCardView() OVERRIDE; |
| 140 virtual void SaveStateToContents(content::WebContents* contents) OVERRIDE; | 140 virtual void SaveStateToContents(content::WebContents* contents) OVERRIDE; |
| 141 virtual void Revert() OVERRIDE; | 141 virtual void Revert() OVERRIDE; |
| 142 virtual const OmniboxView* GetLocationEntry() const OVERRIDE; | 142 virtual const OmniboxView* GetLocationEntry() const OVERRIDE; |
| 143 virtual OmniboxView* GetLocationEntry() OVERRIDE; | 143 virtual OmniboxView* GetLocationEntry() OVERRIDE; |
| 144 virtual LocationBarTesting* GetLocationBarForTesting() OVERRIDE; | 144 virtual LocationBarTesting* GetLocationBarForTesting() OVERRIDE; |
| 145 | 145 |
| 146 // LocationBarTesting: | 146 // LocationBarTesting: |
| 147 virtual int PageActionCount() OVERRIDE; | 147 virtual int PageActionCount() OVERRIDE; |
| 148 virtual int PageActionVisibleCount() OVERRIDE; | 148 virtual int PageActionVisibleCount() OVERRIDE; |
| 149 virtual ExtensionAction* GetPageAction(size_t index) OVERRIDE; | 149 virtual ExtensionAction* GetPageAction(size_t index) OVERRIDE; |
| (...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 529 BooleanPrefMember edit_bookmarks_enabled_; | 529 BooleanPrefMember edit_bookmarks_enabled_; |
| 530 | 530 |
| 531 // Used to remember the URL and title text when drag&drop has begun. | 531 // Used to remember the URL and title text when drag&drop has begun. |
| 532 GURL drag_url_; | 532 GURL drag_url_; |
| 533 string16 drag_title_; | 533 string16 drag_title_; |
| 534 | 534 |
| 535 DISALLOW_COPY_AND_ASSIGN(LocationBarViewGtk); | 535 DISALLOW_COPY_AND_ASSIGN(LocationBarViewGtk); |
| 536 }; | 536 }; |
| 537 | 537 |
| 538 #endif // CHROME_BROWSER_UI_GTK_LOCATION_BAR_VIEW_GTK_H_ | 538 #endif // CHROME_BROWSER_UI_GTK_LOCATION_BAR_VIEW_GTK_H_ |
| OLD | NEW |