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

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

Issue 2858032: Display content settings applying to the current otr session only. (Closed)
Patch Set: updates Created 10 years, 5 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
(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_VIEWS_OPTIONS_CONTENT_EXCEPTIONS_TABLE_VIEW_H_
6 #define CHROME_BROWSER_VIEWS_OPTIONS_CONTENT_EXCEPTIONS_TABLE_VIEW_H_
7
8 #include "chrome/browser/content_exceptions_table_model.h"
9 #include "views/controls/table/table_view.h"
10
11 // A thin wrapper around TableView that displays off-the-record entries in
12 // italics.
13 class ContentExceptionsTableView : public views::TableView {
14 public:
15 ContentExceptionsTableView(ContentExceptionsTableModel* model,
16 const std::vector<TableColumn>& columns);
17
18 virtual ~ContentExceptionsTableView() {}
19
20 private:
21 virtual bool GetCellColors(int model_row,
22 int column,
23 ItemColor* foreground,
24 ItemColor* background,
25 LOGFONT* logfont);
26
27 ContentExceptionsTableModel* exceptions_;
28 };
29
30 #endif // CHROME_BROWSER_VIEWS_OPTIONS_CONTENT_EXCEPTIONS_TABLE_VIEW_H_
OLDNEW
« no previous file with comments | « chrome/browser/profile.cc ('k') | chrome/browser/views/options/content_exceptions_table_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698