| 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/tabs/tab_drag_controller2.h" | 5 #include "chrome/browser/ui/views/tabs/tab_drag_controller2.h" |
| 6 | 6 |
| 7 #include <math.h> | 7 #include <math.h> |
| 8 #include <set> | 8 #include <set> |
| 9 | 9 |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "content/public/browser/notification_types.h" | 27 #include "content/public/browser/notification_types.h" |
| 28 #include "content/public/browser/user_metrics.h" | 28 #include "content/public/browser/user_metrics.h" |
| 29 #include "content/public/browser/web_contents.h" | 29 #include "content/public/browser/web_contents.h" |
| 30 #include "grit/theme_resources.h" | 30 #include "grit/theme_resources.h" |
| 31 #include "third_party/skia/include/core/SkBitmap.h" | 31 #include "third_party/skia/include/core/SkBitmap.h" |
| 32 #include "ui/base/animation/animation.h" | 32 #include "ui/base/animation/animation.h" |
| 33 #include "ui/base/animation/animation_delegate.h" | 33 #include "ui/base/animation/animation_delegate.h" |
| 34 #include "ui/base/animation/slide_animation.h" | 34 #include "ui/base/animation/slide_animation.h" |
| 35 #include "ui/base/events.h" | 35 #include "ui/base/events.h" |
| 36 #include "ui/base/resource/resource_bundle.h" | 36 #include "ui/base/resource/resource_bundle.h" |
| 37 #include "ui/gfx/canvas_skia.h" | 37 #include "ui/gfx/canvas.h" |
| 38 #include "ui/gfx/screen.h" | 38 #include "ui/gfx/screen.h" |
| 39 #include "ui/views/events/event.h" | 39 #include "ui/views/events/event.h" |
| 40 #include "ui/views/widget/root_view.h" | 40 #include "ui/views/widget/root_view.h" |
| 41 #include "ui/views/widget/widget.h" | 41 #include "ui/views/widget/widget.h" |
| 42 | 42 |
| 43 #if defined(USE_AURA) | 43 #if defined(USE_AURA) |
| 44 #include "ash/wm/property_util.h" | 44 #include "ash/wm/property_util.h" |
| 45 #endif | 45 #endif |
| 46 | 46 |
| 47 using content::UserMetricsAction; | 47 using content::UserMetricsAction; |
| (...skipping 1359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1407 browser->window()->SetBounds(new_bounds); | 1407 browser->window()->SetBounds(new_bounds); |
| 1408 return browser; | 1408 return browser; |
| 1409 } | 1409 } |
| 1410 | 1410 |
| 1411 void TabDragController2::SetTrackedByWorkspace(gfx::NativeWindow window, | 1411 void TabDragController2::SetTrackedByWorkspace(gfx::NativeWindow window, |
| 1412 bool value) { | 1412 bool value) { |
| 1413 #if defined(USE_AURA) | 1413 #if defined(USE_AURA) |
| 1414 ash::SetTrackedByWorkspace(window, value); | 1414 ash::SetTrackedByWorkspace(window, value); |
| 1415 #endif | 1415 #endif |
| 1416 } | 1416 } |
| OLD | NEW |