Chromium Code Reviews| 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 "ash/test/shelf_view_test_api.h" | 5 #include "ash/test/shelf_view_test_api.h" |
| 6 | 6 |
| 7 #include "ash/common/shelf/overflow_button.h" | 7 #include "ash/common/shelf/overflow_button.h" |
| 8 #include "ash/common/shelf/shelf_button.h" | 8 #include "ash/common/shelf/shelf_button.h" |
| 9 #include "ash/common/shelf/shelf_constants.h" | 9 #include "ash/common/shelf/shelf_constants.h" |
| 10 #include "ash/common/shelf/shelf_model.h" | 10 #include "ash/common/shelf/shelf_model.h" |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 128 } | 128 } |
| 129 | 129 |
| 130 ShelfTooltipManager* ShelfViewTestAPI::tooltip_manager() { | 130 ShelfTooltipManager* ShelfViewTestAPI::tooltip_manager() { |
| 131 return &shelf_view_->tooltip_; | 131 return &shelf_view_->tooltip_; |
| 132 } | 132 } |
| 133 | 133 |
| 134 gfx::Size ShelfViewTestAPI::GetPreferredSize() { | 134 gfx::Size ShelfViewTestAPI::GetPreferredSize() { |
| 135 return shelf_view_->GetPreferredSize(); | 135 return shelf_view_->GetPreferredSize(); |
| 136 } | 136 } |
| 137 | 137 |
| 138 int ShelfViewTestAPI::GetButtonSize() { | 138 int ShelfViewTestAPI::GetButtonSize() { |
|
James Cook
2017/02/28 20:35:11
nit: Since this and GetButtonSpacing() just return
mohsen
2017/02/28 21:05:16
Sure, I didn't remove these methods because GetMin
| |
| 139 return GetShelfConstant(SHELF_BUTTON_SIZE); | 139 return kShelfButtonSize; |
| 140 } | 140 } |
| 141 | 141 |
| 142 int ShelfViewTestAPI::GetButtonSpacing() { | 142 int ShelfViewTestAPI::GetButtonSpacing() { |
| 143 return GetShelfConstant(SHELF_BUTTON_SPACING); | 143 return kShelfButtonSpacing; |
| 144 } | 144 } |
| 145 | 145 |
| 146 int ShelfViewTestAPI::GetMinimumDragDistance() const { | 146 int ShelfViewTestAPI::GetMinimumDragDistance() const { |
| 147 return ShelfView::kMinimumDragDistance; | 147 return ShelfView::kMinimumDragDistance; |
| 148 } | 148 } |
| 149 | 149 |
| 150 void ShelfViewTestAPI::ButtonPressed(views::Button* sender, | 150 void ShelfViewTestAPI::ButtonPressed(views::Button* sender, |
| 151 const ui::Event& event, | 151 const ui::Event& event, |
| 152 views::InkDrop* ink_drop) { | 152 views::InkDrop* ink_drop) { |
| 153 return shelf_view_->ButtonPressed(sender, event, ink_drop); | 153 return shelf_view_->ButtonPressed(sender, event, ink_drop); |
| (...skipping 20 matching lines...) Expand all Loading... | |
| 174 return shelf_view_->dragged_off_from_overflow_to_shelf_; | 174 return shelf_view_->dragged_off_from_overflow_to_shelf_; |
| 175 } | 175 } |
| 176 | 176 |
| 177 ShelfButtonPressedMetricTracker* | 177 ShelfButtonPressedMetricTracker* |
| 178 ShelfViewTestAPI::shelf_button_pressed_metric_tracker() { | 178 ShelfViewTestAPI::shelf_button_pressed_metric_tracker() { |
| 179 return &(shelf_view_->shelf_button_pressed_metric_tracker_); | 179 return &(shelf_view_->shelf_button_pressed_metric_tracker_); |
| 180 } | 180 } |
| 181 | 181 |
| 182 } // namespace test | 182 } // namespace test |
| 183 } // namespace ash | 183 } // namespace ash |
| OLD | NEW |