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

Side by Side Diff: chrome/browser/ui/views/indexed_db_info_view.h

Issue 10826162: views: Remove unused indexed_db_info_view files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/ui/views/indexed_db_info_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
(Empty)
1 // Copyright (c) 2012 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_INDEXED_DB_INFO_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_INDEXED_DB_INFO_VIEW_H_
7
8 #include "chrome/browser/browsing_data/browsing_data_indexed_db_helper.h"
9 #include "ui/views/view.h"
10
11 namespace views {
12 class Textfield;
13 }
14
15 ///////////////////////////////////////////////////////////////////////////////
16 // IndexedDBInfoView
17 //
18 // Responsible for displaying a tabular grid of IndexedDB information.
19 class IndexedDBInfoView : public views::View {
20 public:
21 IndexedDBInfoView();
22 virtual ~IndexedDBInfoView();
23
24 // Update the display from the specified Local Storage info.
25 void SetIndexedDBInfo(
26 const BrowsingDataIndexedDBHelper::IndexedDBInfo&
27 indexed_db_info);
28
29 // Clears the cookie display to indicate that no or multiple local storages
30 // are selected.
31 void ClearIndexedDBDisplay();
32
33 // Enables or disables the local storate property text fields.
34 void EnableIndexedDBDisplay(bool enabled);
35
36 protected:
37 // views::View overrides:
38 virtual void ViewHierarchyChanged(
39 bool is_add, views::View* parent, views::View* child);
40
41 private:
42 // Set up the view layout
43 void Init();
44
45 // Individual property labels
46 views::Textfield* origin_value_field_;
47 views::Textfield* size_value_field_;
48 views::Textfield* last_modified_value_field_;
49
50 DISALLOW_COPY_AND_ASSIGN(IndexedDBInfoView);
51 };
52
53 #endif // CHROME_BROWSER_UI_VIEWS_INDEXED_DB_INFO_VIEW_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/views/indexed_db_info_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698