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

Side by Side Diff: views/controls/table/table_view.h

Issue 65012: Move skia to DEPS, and put it in third_party. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « views/controls/tabbed_pane.cc ('k') | views/controls/table/table_view.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 #ifndef VIEWS_CONTROLS_TABLE_TABLE_VIEW_H_ 5 #ifndef VIEWS_CONTROLS_TABLE_TABLE_VIEW_H_
6 #define VIEWS_CONTROLS_TABLE_TABLE_VIEW_H_ 6 #define VIEWS_CONTROLS_TABLE_TABLE_VIEW_H_
7 7
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 9
10 #if defined(OS_WIN) 10 #if defined(OS_WIN)
11 #include <windows.h> 11 #include <windows.h>
12 #endif // defined(OS_WIN) 12 #endif // defined(OS_WIN)
13 13
14 #include <map> 14 #include <map>
15 #include <unicode/coll.h> 15 #include <unicode/coll.h>
16 #include <unicode/uchar.h> 16 #include <unicode/uchar.h>
17 #include <vector> 17 #include <vector>
18 18
19 #include "app/l10n_util.h" 19 #include "app/l10n_util.h"
20 #include "base/logging.h" 20 #include "base/logging.h"
21 #include "skia/include/SkColor.h" 21 #include "third_party/skia/include/core/SkColor.h"
22 #if defined(OS_WIN) 22 #if defined(OS_WIN)
23 // TODO(port): remove the ifdef when native_control.h is ported. 23 // TODO(port): remove the ifdef when native_control.h is ported.
24 #include "views/controls/native_control.h" 24 #include "views/controls/native_control.h"
25 #endif // defined(OS_WIN) 25 #endif // defined(OS_WIN)
26 26
27 class SkBitmap; 27 class SkBitmap;
28 28
29 // A TableView is a view that displays multiple rows with any number of columns. 29 // A TableView is a view that displays multiple rows with any number of columns.
30 // TableView is driven by a TableModel. The model returns the contents 30 // TableView is driven by a TableModel. The model returns the contents
31 // to display. TableModel also has an Observer which is used to notify 31 // to display. TableModel also has an Observer which is used to notify
(...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after
667 scoped_array<int> view_to_model_; 667 scoped_array<int> view_to_model_;
668 scoped_array<int> model_to_view_; 668 scoped_array<int> model_to_view_;
669 669
670 DISALLOW_COPY_AND_ASSIGN(TableView); 670 DISALLOW_COPY_AND_ASSIGN(TableView);
671 }; 671 };
672 #endif // defined(OS_WIN) 672 #endif // defined(OS_WIN)
673 673
674 } // namespace views 674 } // namespace views
675 675
676 #endif // VIEWS_CONTROLS_TABLE_TABLE_VIEW_H_ 676 #endif // VIEWS_CONTROLS_TABLE_TABLE_VIEW_H_
OLDNEW
« no previous file with comments | « views/controls/tabbed_pane.cc ('k') | views/controls/table/table_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698