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

Unified Diff: views/controls/table/native_table_wrapper.h

Issue 7790009: views: Fix a couple of other trivial TODOs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « views/controls/table/native_table_win.cc ('k') | views/controls/table/table_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/controls/table/native_table_wrapper.h
diff --git a/views/controls/table/native_table_wrapper.h b/views/controls/table/native_table_wrapper.h
index 1e75bb90b75ec6e88ca579a8db8de85b97edc617..5b331b413d4460ab15100b038ab2f4233b929cff 100644
--- a/views/controls/table/native_table_wrapper.h
+++ b/views/controls/table/native_table_wrapper.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -8,7 +8,9 @@
#include "ui/gfx/native_widget_types.h"
-using ui::TableColumn;
+namespace ui {
+struct TableColumn;
+}
namespace views {
@@ -23,7 +25,7 @@ class NativeTableWrapper {
virtual int GetRowCount() const = 0;
// Inserts/removes a column at the specified index.
- virtual void InsertColumn(const TableColumn& column, int index) = 0;
+ virtual void InsertColumn(const ui::TableColumn& column, int index) = 0;
virtual void RemoveColumn(int index) = 0;
// Returns the number of rows that are selected.
« no previous file with comments | « views/controls/table/native_table_win.cc ('k') | views/controls/table/table_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698