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

Side by Side Diff: ash/wm/maximize_bubble_controller.cc

Issue 18050008: Use a direct include of time headers in android_webview/, apps/, ash/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 "ash/wm/maximize_bubble_controller.h" 5 #include "ash/wm/maximize_bubble_controller.h"
6 6
7 #include "ash/shell.h" 7 #include "ash/shell.h"
8 #include "ash/shell_delegate.h" 8 #include "ash/shell_delegate.h"
9 #include "ash/shell_window_ids.h" 9 #include "ash/shell_window_ids.h"
10 #include "ash/wm/window_animations.h" 10 #include "ash/wm/window_animations.h"
11 #include "ash/wm/workspace/frame_maximize_button.h" 11 #include "ash/wm/workspace/frame_maximize_button.h"
12 #include "base/timer.h" 12 #include "base/timer/timer.h"
13 #include "grit/ash_resources.h" 13 #include "grit/ash_resources.h"
14 #include "grit/ash_strings.h" 14 #include "grit/ash_strings.h"
15 #include "third_party/skia/include/core/SkPath.h" 15 #include "third_party/skia/include/core/SkPath.h"
16 #include "ui/aura/window.h" 16 #include "ui/aura/window.h"
17 #include "ui/base/animation/animation.h" 17 #include "ui/base/animation/animation.h"
18 #include "ui/base/l10n/l10n_util.h" 18 #include "ui/base/l10n/l10n_util.h"
19 #include "ui/base/resource/resource_bundle.h" 19 #include "ui/base/resource/resource_bundle.h"
20 #include "ui/gfx/canvas.h" 20 #include "ui/gfx/canvas.h"
21 #include "ui/gfx/path.h" 21 #include "ui/gfx/path.h"
22 #include "ui/gfx/screen.h" 22 #include "ui/gfx/screen.h"
(...skipping 832 matching lines...) Expand 10 before | Expand all | Expand 10 after
855 if (!GetBoundsInScreen().Contains(screen_location)) 855 if (!GetBoundsInScreen().Contains(screen_location))
856 button_row_->ButtonHovered(NULL); 856 button_row_->ButtonHovered(NULL);
857 else 857 else
858 button_row_->ButtonHovered(this); 858 button_row_->ButtonHovered(this);
859 859
860 // Pass the event on to the normal handler. 860 // Pass the event on to the normal handler.
861 return views::ImageButton::OnMouseDragged(event); 861 return views::ImageButton::OnMouseDragged(event);
862 } 862 }
863 863
864 } // namespace ash 864 } // namespace ash
OLDNEW
« no previous file with comments | « ash/wm/lock_state_controller_impl2_unittest.cc ('k') | ash/wm/power_button_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698