diff options
author | Ben Murdoch <benm@google.com> | 2010-11-25 19:40:10 +0000 |
---|---|---|
committer | Ben Murdoch <benm@google.com> | 2010-12-03 13:52:53 +0000 |
commit | 4a5e2dc747d50c653511c68ccb2cfbfb740bd5a7 (patch) | |
tree | 938665d93a11fe7a6d0124e3c1e020d1f9d3f947 /chrome/browser/views/database_info_view.h | |
parent | 7c627d87728a355737862918d144f98f69406954 (diff) | |
download | external_chromium-4a5e2dc747d50c653511c68ccb2cfbfb740bd5a7.zip external_chromium-4a5e2dc747d50c653511c68ccb2cfbfb740bd5a7.tar.gz external_chromium-4a5e2dc747d50c653511c68ccb2cfbfb740bd5a7.tar.bz2 |
Merge Chromium at r66597: Initial merge by git.
Change-Id: I9639f8a997f90ec219573aa22a49f5dbde78cc7b
Diffstat (limited to 'chrome/browser/views/database_info_view.h')
-rw-r--r-- | chrome/browser/views/database_info_view.h | 49 |
1 files changed, 3 insertions, 46 deletions
diff --git a/chrome/browser/views/database_info_view.h b/chrome/browser/views/database_info_view.h index 269d3c4..5f7e747 100644 --- a/chrome/browser/views/database_info_view.h +++ b/chrome/browser/views/database_info_view.h @@ -6,51 +6,8 @@ #define CHROME_BROWSER_VIEWS_DATABASE_INFO_VIEW_H_ #pragma once -#include "views/view.h" -#include "chrome/browser/browsing_data_database_helper.h" - -namespace views { -class Label; -class Textfield; -} - -/////////////////////////////////////////////////////////////////////////////// -// DatabaseInfoView -// -// Responsible for displaying a tabular grid of Database information. -class DatabaseInfoView : public views::View { - public: - DatabaseInfoView(); - virtual ~DatabaseInfoView(); - - // Update the display from the specified Database info. - void SetDatabaseInfo( - const BrowsingDataDatabaseHelper::DatabaseInfo& database_info); - - // Clears the cookie display to indicate that no or multiple databases are - // selected. - void ClearDatabaseDisplay(); - - // Enables or disables the database property text fields. - void EnableDatabaseDisplay(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* name_value_field_; - views::Textfield* description_value_field_; - views::Textfield* size_value_field_; - views::Textfield* last_modified_value_field_; - - DISALLOW_COPY_AND_ASSIGN(DatabaseInfoView); -}; - +#include "chrome/browser/ui/views/database_info_view.h" +// TODO(beng): remove this file once all includes have been updated. #endif // CHROME_BROWSER_VIEWS_DATABASE_INFO_VIEW_H_ + |