OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/views/location_bar/page_action_image_view.h" | 5 #include "chrome/browser/views/location_bar/page_action_image_view.h" |
6 | 6 |
7 #include "chrome/browser/browser_list.h" | 7 #include "chrome/browser/browser_list.h" |
8 #include "chrome/browser/extensions/extension_browser_event_router.h" | 8 #include "chrome/browser/extensions/extension_browser_event_router.h" |
9 #include "chrome/browser/extensions/extensions_service.h" | 9 #include "chrome/browser/extensions/extensions_service.h" |
10 #include "chrome/browser/profile.h" | 10 #include "chrome/browser/profile.h" |
11 #include "chrome/browser/views/frame/browser_view.h" | 11 #include "chrome/browser/views/frame/browser_view.h" |
12 #include "chrome/browser/views/location_bar/location_bar_view.h" | 12 #include "chrome/browser/views/location_bar/location_bar_view.h" |
13 #include "chrome/common/platform_util.h" | 13 #include "chrome/browser/platform_util.h" |
14 #include "views/controls/menu/menu_2.h" | 14 #include "views/controls/menu/menu_2.h" |
15 | 15 |
16 PageActionImageView::PageActionImageView(LocationBarView* owner, | 16 PageActionImageView::PageActionImageView(LocationBarView* owner, |
17 Profile* profile, | 17 Profile* profile, |
18 ExtensionAction* page_action) | 18 ExtensionAction* page_action) |
19 : owner_(owner), | 19 : owner_(owner), |
20 profile_(profile), | 20 profile_(profile), |
21 page_action_(page_action), | 21 page_action_(page_action), |
22 ALLOW_THIS_IN_INITIALIZER_LIST(tracker_(this)), | 22 ALLOW_THIS_IN_INITIALIZER_LIST(tracker_(this)), |
23 current_tab_id_(-1), | 23 current_tab_id_(-1), |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 void PageActionImageView::ExtensionPopupClosed(ExtensionPopup* popup) { | 210 void PageActionImageView::ExtensionPopupClosed(ExtensionPopup* popup) { |
211 DCHECK_EQ(popup_, popup); | 211 DCHECK_EQ(popup_, popup); |
212 // ExtensionPopup is ref-counted, so we don't need to delete it. | 212 // ExtensionPopup is ref-counted, so we don't need to delete it. |
213 popup_ = NULL; | 213 popup_ = NULL; |
214 } | 214 } |
215 | 215 |
216 void PageActionImageView::HidePopup() { | 216 void PageActionImageView::HidePopup() { |
217 if (popup_) | 217 if (popup_) |
218 popup_->Close(); | 218 popup_->Close(); |
219 } | 219 } |
220 | |
221 | |
OLD | NEW |