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

Side by Side Diff: views/controls/table/table_view2.cc

Issue 3461019: FBTF: Move virtual methods to implementation files. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Win+chromeos+mac fixes Created 10 years, 3 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 unified diff | Download patch
OLDNEW
1 1
2 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 2 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
3 // Use of this source code is governed by a BSD-style license that can be 3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file. 4 // found in the LICENSE file.
5 5
6 #include "views/controls/table/table_view2.h" 6 #include "views/controls/table/table_view2.h"
7 7
8 #include "app/table_model.h" 8 #include "app/table_model.h"
9 #include "base/logging.h"
9 #include "views/controls/native/native_view_host.h" 10 #include "views/controls/native/native_view_host.h"
10 #include "views/controls/table/table_view_observer.h" 11 #include "views/controls/table/table_view_observer.h"
11 12
12 namespace views { 13 namespace views {
13 14
14 // TableView2 ------------------------------------------------------------------ 15 // TableView2 ------------------------------------------------------------------
15 16
16 TableView2::TableView2(TableModel* model, 17 TableView2::TableView2(TableModel* model,
17 const std::vector<TableColumn>& columns, 18 const std::vector<TableColumn>& columns,
18 TableTypes table_type, 19 TableTypes table_type,
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 } 340 }
340 341
341 //////////////////////////////////////////////////////////////////////////////// 342 ////////////////////////////////////////////////////////////////////////////////
342 // NativeTable2, protected: 343 // NativeTable2, protected:
343 344
344 NativeTableWrapper* TableView2::CreateWrapper() { 345 NativeTableWrapper* TableView2::CreateWrapper() {
345 return NativeTableWrapper::CreateNativeWrapper(this); 346 return NativeTableWrapper::CreateNativeWrapper(this);
346 } 347 }
347 348
348 } // namespace views 349 } // namespace views
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698