From e80daf62322d8494212abacd6c810eddef59b2be Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" Date: Sun, 31 May 2009 02:36:23 +0000 Subject: Split out the views table functions into separate header files. Many users only need either the view or model observers and that's it. I moved the model constructors to a .cc file so we don't have to include l10n_util.h for everybody. A surprising number of files were getting l10n_util from the table code, so I had to add it in a bunch of places. There should be no code change except I made the table column cosntructors take wstring references instead of copies. Review URL: http://codereview.chromium.org/115969 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17295 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/task_manager_win.cc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'chrome/browser/task_manager_win.cc') diff --git a/chrome/browser/task_manager_win.cc b/chrome/browser/task_manager_win.cc index 7fc7492..3f8c8dd 100644 --- a/chrome/browser/task_manager_win.cc +++ b/chrome/browser/task_manager_win.cc @@ -4,6 +4,7 @@ #include "chrome/browser/task_manager.h" +#include "app/l10n_util.h" #include "base/stats_table.h" #include "chrome/app/chrome_dll_resource.h" #include "chrome/browser/browser_list.h" @@ -19,6 +20,7 @@ #include "views/controls/link.h" #include "views/controls/menu/menu.h" #include "views/controls/table/group_table_view.h" +#include "views/controls/table/table_view_observer.h" #include "views/standard_layout.h" #include "views/widget/widget.h" #include "views/window/dialog_delegate.h" -- cgit v1.1