Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(142)

Side by Side Diff: chrome/browser/ui/gtk/location_bar_view_gtk.cc

Issue 10836031: Remove Instant v1 API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 #include "chrome/browser/ui/gtk/location_bar_view_gtk.h" 5 #include "chrome/browser/ui/gtk/location_bar_view_gtk.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 13 matching lines...) Expand all
24 #include "chrome/browser/command_updater.h" 24 #include "chrome/browser/command_updater.h"
25 #include "chrome/browser/content_settings/tab_specific_content_settings.h" 25 #include "chrome/browser/content_settings/tab_specific_content_settings.h"
26 #include "chrome/browser/defaults.h" 26 #include "chrome/browser/defaults.h"
27 #include "chrome/browser/extensions/api/commands/command_service.h" 27 #include "chrome/browser/extensions/api/commands/command_service.h"
28 #include "chrome/browser/extensions/api/commands/command_service_factory.h" 28 #include "chrome/browser/extensions/api/commands/command_service_factory.h"
29 #include "chrome/browser/extensions/extension_service.h" 29 #include "chrome/browser/extensions/extension_service.h"
30 #include "chrome/browser/extensions/extension_tab_util.h" 30 #include "chrome/browser/extensions/extension_tab_util.h"
31 #include "chrome/browser/extensions/location_bar_controller.h" 31 #include "chrome/browser/extensions/location_bar_controller.h"
32 #include "chrome/browser/extensions/tab_helper.h" 32 #include "chrome/browser/extensions/tab_helper.h"
33 #include "chrome/browser/favicon/favicon_tab_helper.h" 33 #include "chrome/browser/favicon/favicon_tab_helper.h"
34 #include "chrome/browser/instant/instant_controller.h"
35 #include "chrome/browser/profiles/profile.h" 34 #include "chrome/browser/profiles/profile.h"
36 #include "chrome/browser/search_engines/template_url.h" 35 #include "chrome/browser/search_engines/template_url.h"
37 #include "chrome/browser/search_engines/template_url_service.h" 36 #include "chrome/browser/search_engines/template_url_service.h"
38 #include "chrome/browser/search_engines/template_url_service_factory.h" 37 #include "chrome/browser/search_engines/template_url_service_factory.h"
39 #include "chrome/browser/ui/browser.h" 38 #include "chrome/browser/ui/browser.h"
40 #include "chrome/browser/ui/browser_command_controller.h" 39 #include "chrome/browser/ui/browser_command_controller.h"
41 #include "chrome/browser/ui/browser_commands.h" 40 #include "chrome/browser/ui/browser_commands.h"
42 #include "chrome/browser/ui/browser_content_setting_bubble_model_delegate.h" 41 #include "chrome/browser/ui/browser_content_setting_bubble_model_delegate.h"
43 #include "chrome/browser/ui/browser_instant_controller.h" 42 #include "chrome/browser/ui/browser_instant_controller.h"
44 #include "chrome/browser/ui/browser_list.h" 43 #include "chrome/browser/ui/browser_list.h"
(...skipping 2005 matching lines...) Expand 10 before | Expand all | Expand 10 after
2050 } 2049 }
2051 2050
2052 void LocationBarViewGtk::PageActionViewGtk::InspectPopup( 2051 void LocationBarViewGtk::PageActionViewGtk::InspectPopup(
2053 ExtensionAction* action) { 2052 ExtensionAction* action) {
2054 ExtensionPopupGtk::Show( 2053 ExtensionPopupGtk::Show(
2055 action->GetPopupUrl(current_tab_id_), 2054 action->GetPopupUrl(current_tab_id_),
2056 owner_->browser_, 2055 owner_->browser_,
2057 event_box_.get(), 2056 event_box_.get(),
2058 ExtensionPopupGtk::SHOW_AND_INSPECT); 2057 ExtensionPopupGtk::SHOW_AND_INSPECT);
2059 } 2058 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698