| 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/default_tab_drag_controller.h" | 5 #include "chrome/browser/ui/views/tabs/default_tab_drag_controller.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/shell.h" | 44 #include "ash/shell.h" |
| 45 #include "chrome/browser/ui/views/tabs/tab_drag_controller2.h" | 45 #include "chrome/browser/ui/views/tabs/tab_drag_controller2.h" |
| 46 #endif | 46 #endif |
| 47 | 47 |
| (...skipping 1443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1491 } | 1491 } |
| 1492 | 1492 |
| 1493 // static | 1493 // static |
| 1494 bool TabDragController::IsActive() { | 1494 bool TabDragController::IsActive() { |
| 1495 #if defined(USE_AURA) || defined(OS_WIN) | 1495 #if defined(USE_AURA) || defined(OS_WIN) |
| 1496 return TabDragController2::IsActive() || (instance_ && instance_->active()); | 1496 return TabDragController2::IsActive() || (instance_ && instance_->active()); |
| 1497 #else | 1497 #else |
| 1498 return instance_ && instance_->active(); | 1498 return instance_ && instance_->active(); |
| 1499 #endif | 1499 #endif |
| 1500 } | 1500 } |
| OLD | NEW |