| 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> | 
|   11 #include <string> |   11 #include <string> | 
|   12  |   12  | 
|   13 #include "base/basictypes.h" |   13 #include "base/basictypes.h" | 
|   14 #include "base/compiler_specific.h" |   14 #include "base/compiler_specific.h" | 
|   15 #include "base/memory/scoped_ptr.h" |   15 #include "base/memory/scoped_ptr.h" | 
|   16 #include "base/memory/scoped_vector.h" |   16 #include "base/memory/scoped_vector.h" | 
|   17 #include "base/memory/weak_ptr.h" |   17 #include "base/memory/weak_ptr.h" | 
 |   18 #include "chrome/browser/api/prefs/pref_member.h" | 
|   18 #include "chrome/browser/command_observer.h" |   19 #include "chrome/browser/command_observer.h" | 
|   19 #include "chrome/browser/extensions/extension_context_menu_model.h" |   20 #include "chrome/browser/extensions/extension_context_menu_model.h" | 
|   20 #include "chrome/browser/extensions/image_loading_tracker.h" |   21 #include "chrome/browser/extensions/image_loading_tracker.h" | 
|   21 #include "chrome/browser/prefs/pref_member.h" |  | 
|   22 #include "chrome/browser/ui/gtk/bubble/bubble_gtk.h" |   22 #include "chrome/browser/ui/gtk/bubble/bubble_gtk.h" | 
|   23 #include "chrome/browser/ui/gtk/menu_gtk.h" |   23 #include "chrome/browser/ui/gtk/menu_gtk.h" | 
|   24 #include "chrome/browser/ui/omnibox/location_bar.h" |   24 #include "chrome/browser/ui/omnibox/location_bar.h" | 
|   25 #include "chrome/browser/ui/omnibox/omnibox_edit_controller.h" |   25 #include "chrome/browser/ui/omnibox/omnibox_edit_controller.h" | 
|   26 #include "chrome/browser/ui/view_ids.h" |   26 #include "chrome/browser/ui/view_ids.h" | 
|   27 #include "chrome/browser/ui/zoom/zoom_controller.h" |   27 #include "chrome/browser/ui/zoom/zoom_controller.h" | 
|   28 #include "chrome/common/content_settings_types.h" |   28 #include "chrome/common/content_settings_types.h" | 
|   29 #include "chrome/common/extensions/extension_action.h" |   29 #include "chrome/common/extensions/extension_action.h" | 
|   30 #include "content/public/browser/notification_observer.h" |   30 #include "content/public/browser/notification_observer.h" | 
|   31 #include "content/public/browser/notification_registrar.h" |   31 #include "content/public/browser/notification_registrar.h" | 
| (...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  539   BooleanPrefMember edit_bookmarks_enabled_; |  539   BooleanPrefMember edit_bookmarks_enabled_; | 
|  540  |  540  | 
|  541   // Used to remember the URL and title text when drag&drop has begun. |  541   // Used to remember the URL and title text when drag&drop has begun. | 
|  542   GURL drag_url_; |  542   GURL drag_url_; | 
|  543   string16 drag_title_; |  543   string16 drag_title_; | 
|  544  |  544  | 
|  545   DISALLOW_COPY_AND_ASSIGN(LocationBarViewGtk); |  545   DISALLOW_COPY_AND_ASSIGN(LocationBarViewGtk); | 
|  546 }; |  546 }; | 
|  547  |  547  | 
|  548 #endif  // CHROME_BROWSER_UI_GTK_LOCATION_BAR_VIEW_GTK_H_ |  548 #endif  // CHROME_BROWSER_UI_GTK_LOCATION_BAR_VIEW_GTK_H_ | 
| OLD | NEW |