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 #include "chrome/browser/ui/views/extensions/browser_action_overflow_menu_contro
ller.h" | 5 #include "chrome/browser/ui/views/extensions/browser_action_overflow_menu_contro
ller.h" |
6 | 6 |
7 #include "base/message_loop.h" | 7 #include "base/message_loop.h" |
8 #include "base/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
9 #include "chrome/browser/extensions/extension_action.h" | 9 #include "chrome/browser/extensions/extension_action.h" |
10 #include "chrome/browser/extensions/extension_action_manager.h" | 10 #include "chrome/browser/extensions/extension_action_manager.h" |
11 #include "chrome/browser/extensions/extension_context_menu_model.h" | 11 #include "chrome/browser/extensions/extension_context_menu_model.h" |
12 #include "chrome/browser/profiles/profile.h" | 12 #include "chrome/browser/profiles/profile.h" |
13 #include "chrome/browser/ui/browser_list.h" | 13 #include "chrome/browser/ui/browser_list.h" |
14 #include "chrome/browser/ui/views/browser_action_view.h" | 14 #include "chrome/browser/ui/views/browser_action_view.h" |
15 #include "chrome/browser/ui/views/browser_actions_container.h" | 15 #include "chrome/browser/ui/views/browser_actions_container.h" |
16 #include "chrome/browser/ui/views/extensions/browser_action_drag_data.h" | 16 #include "chrome/browser/ui/views/extensions/browser_action_drag_data.h" |
17 #include "chrome/common/extensions/extension.h" | 17 #include "chrome/common/extensions/extension.h" |
18 #include "ui/gfx/canvas.h" | 18 #include "ui/gfx/canvas.h" |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 | 218 |
219 BrowserActionView* BrowserActionOverflowMenuController::ViewForId( | 219 BrowserActionView* BrowserActionOverflowMenuController::ViewForId( |
220 int id, size_t* index) { | 220 int id, size_t* index) { |
221 // The index of the view being dragged (GetCommand gives a 1-based index into | 221 // The index of the view being dragged (GetCommand gives a 1-based index into |
222 // the overflow menu). | 222 // the overflow menu). |
223 size_t view_index = owner_->VisibleBrowserActions() + id - 1; | 223 size_t view_index = owner_->VisibleBrowserActions() + id - 1; |
224 if (index) | 224 if (index) |
225 *index = view_index; | 225 *index = view_index; |
226 return owner_->GetBrowserActionViewAt(view_index); | 226 return owner_->GetBrowserActionViewAt(view_index); |
227 } | 227 } |
OLD | NEW |