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

Unified Diff: ui/app_list/views/apps_grid_view.cc

Issue 788493002: app_list: Enable level 1 of cpplint, be stricker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: revert PRESUBMIT.py changes Created 6 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/app_list/views/app_list_view_unittest.cc ('k') | ui/app_list/views/cached_label.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/app_list/views/apps_grid_view.cc
diff --git a/ui/app_list/views/apps_grid_view.cc b/ui/app_list/views/apps_grid_view.cc
index f5e5ca07aeafda5be94ecd226d34f44a617f7347..bc200c6bcc63d4757793fd8a317805db4c28bd22 100644
--- a/ui/app_list/views/apps_grid_view.cc
+++ b/ui/app_list/views/apps_grid_view.cc
@@ -291,14 +291,11 @@ class SynchronousDrag : public ui::DragSourceWin {
private:
// Overridden from ui::DragSourceWin.
- virtual void OnDragSourceCancel() override {
- canceled_ = true;
- }
+ void OnDragSourceCancel() override { canceled_ = true; }
- virtual void OnDragSourceDrop() override {
- }
+ void OnDragSourceDrop() override {}
- virtual void OnDragSourceMove() override {
+ void OnDragSourceMove() override {
grid_view_->UpdateDrag(AppsGridView::MOUSE, GetCursorInGridViewCoords());
}
« no previous file with comments | « ui/app_list/views/app_list_view_unittest.cc ('k') | ui/app_list/views/cached_label.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698