summaryrefslogtreecommitdiffstats
path: root/views
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-13 14:18:06 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-13 14:18:06 +0000
commitc72e24894a880d67ccc35ee67c85b784f1e829bb (patch)
tree368206afa82fb01e771f739b48d5bc277581ed4f /views
parentfde0830ad20fb1b7f8734e79eedef4d2f684c910 (diff)
downloadchromium_src-c72e24894a880d67ccc35ee67c85b784f1e829bb.zip
chromium_src-c72e24894a880d67ccc35ee67c85b784f1e829bb.tar.gz
chromium_src-c72e24894a880d67ccc35ee67c85b784f1e829bb.tar.bz2
views: Remove includes to deprecated base/task.h.
BUG=35223 R=sky@chromium.org Review URL: http://codereview.chromium.org/8241021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@105303 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views')
-rw-r--r--views/bubble/bubble_view.h1
-rw-r--r--views/mouse_watcher.cc3
-rw-r--r--views/widget/aero_tooltip_manager.h1
-rw-r--r--views/window/non_client_view.h1
4 files changed, 1 insertions, 5 deletions
diff --git a/views/bubble/bubble_view.h b/views/bubble/bubble_view.h
index 53fdabf..948b39f 100644
--- a/views/bubble/bubble_view.h
+++ b/views/bubble/bubble_view.h
@@ -9,7 +9,6 @@
#include <string>
#include "base/gtest_prod_util.h"
-#include "base/task.h"
#include "third_party/skia/include/core/SkColor.h"
#include "ui/base/animation/animation_delegate.h"
#include "views/accelerator.h"
diff --git a/views/mouse_watcher.cc b/views/mouse_watcher.cc
index 3891e87..02e1cc0 100644
--- a/views/mouse_watcher.cc
+++ b/views/mouse_watcher.cc
@@ -8,7 +8,6 @@
#include "base/compiler_specific.h"
#include "base/memory/weak_ptr.h"
#include "base/message_loop.h"
-#include "base/task.h"
#include "ui/base/events.h"
#include "ui/gfx/screen.h"
#include "views/view.h"
@@ -22,7 +21,7 @@ namespace views {
// Amount of time between when the mouse moves outside the view's zone and when
// the listener is notified.
-static const int kNotifyListenerTimeMs = 300;
+const int kNotifyListenerTimeMs = 300;
class MouseWatcher::Observer : public MessageLoopForUI::Observer {
public:
diff --git a/views/widget/aero_tooltip_manager.h b/views/widget/aero_tooltip_manager.h
index 12efd0c..9f322fd 100644
--- a/views/widget/aero_tooltip_manager.h
+++ b/views/widget/aero_tooltip_manager.h
@@ -7,7 +7,6 @@
#pragma once
#include "base/memory/ref_counted.h"
-#include "base/task.h"
#include "views/widget/tooltip_manager_win.h"
namespace views {
diff --git a/views/window/non_client_view.h b/views/window/non_client_view.h
index 48f0224..776a6b1 100644
--- a/views/window/non_client_view.h
+++ b/views/window/non_client_view.h
@@ -6,7 +6,6 @@
#define VIEWS_WINDOW_NON_CLIENT_VIEW_H_
#pragma once
-#include "base/task.h"
#include "views/view.h"
#include "views/window/client_view.h"