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

Side by Side Diff: chrome/browser/ui/views/options/content_exceptions_table_view.h

Issue 6670011: Options: Remove the GTK and Views native options code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 9 years, 9 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
OLDNEW
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_VIEWS_OPTIONS_CONTENT_EXCEPTIONS_TABLE_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_OPTIONS_CONTENT_EXCEPTIONS_TABLE_VIEW_H_
7 #pragma once
8
9 #include "chrome/browser/content_exceptions_table_model.h"
10 #include "views/controls/table/table_view.h"
11
12 // A thin wrapper around TableView that displays incognito entries in
13 // italics.
14 class ContentExceptionsTableView : public views::TableView {
15 public:
16 ContentExceptionsTableView(ContentExceptionsTableModel* model,
17 const std::vector<TableColumn>& columns);
18
19 virtual ~ContentExceptionsTableView() {}
20
21 private:
22 virtual bool GetCellColors(int model_row,
23 int column,
24 ItemColor* foreground,
25 ItemColor* background,
26 LOGFONT* logfont);
27
28 ContentExceptionsTableModel* exceptions_;
29 };
30
31 #endif // CHROME_BROWSER_UI_VIEWS_OPTIONS_CONTENT_EXCEPTIONS_TABLE_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698