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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/ui/views/indexed_db_info_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/indexed_db_info_view.h
diff --git a/chrome/browser/ui/views/indexed_db_info_view.h b/chrome/browser/ui/views/indexed_db_info_view.h
deleted file mode 100644
index 22c134d47328cccee86d54dbd8bc3ee8ce8a8c06..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/views/indexed_db_info_view.h
+++ /dev/null
@@ -1,53 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_BROWSER_UI_VIEWS_INDEXED_DB_INFO_VIEW_H_
-#define CHROME_BROWSER_UI_VIEWS_INDEXED_DB_INFO_VIEW_H_
-
-#include "chrome/browser/browsing_data/browsing_data_indexed_db_helper.h"
-#include "ui/views/view.h"
-
-namespace views {
-class Textfield;
-}
-
-///////////////////////////////////////////////////////////////////////////////
-// IndexedDBInfoView
-//
-// Responsible for displaying a tabular grid of IndexedDB information.
-class IndexedDBInfoView : public views::View {
- public:
- IndexedDBInfoView();
- virtual ~IndexedDBInfoView();
-
- // Update the display from the specified Local Storage info.
- void SetIndexedDBInfo(
- const BrowsingDataIndexedDBHelper::IndexedDBInfo&
- indexed_db_info);
-
- // Clears the cookie display to indicate that no or multiple local storages
- // are selected.
- void ClearIndexedDBDisplay();
-
- // Enables or disables the local storate property text fields.
- void EnableIndexedDBDisplay(bool enabled);
-
- protected:
- // views::View overrides:
- virtual void ViewHierarchyChanged(
- bool is_add, views::View* parent, views::View* child);
-
- private:
- // Set up the view layout
- void Init();
-
- // Individual property labels
- views::Textfield* origin_value_field_;
- views::Textfield* size_value_field_;
- views::Textfield* last_modified_value_field_;
-
- DISALLOW_COPY_AND_ASSIGN(IndexedDBInfoView);
-};
-
-#endif // CHROME_BROWSER_UI_VIEWS_INDEXED_DB_INFO_VIEW_H_
« 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