summaryrefslogtreecommitdiffstats
path: root/chrome/browser/views/importer_lock_view.cc
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-16 23:51:38 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-16 23:51:38 +0000
commitc2dacc9ec41232903ba700c6aef5ef98bfcb8af8 (patch)
tree4aa4d7100862c64bdd92d70e6323001beb19edb7 /chrome/browser/views/importer_lock_view.cc
parentd66e710ec668e34271def44d7f0416260657171c (diff)
downloadchromium_src-c2dacc9ec41232903ba700c6aef5ef98bfcb8af8.zip
chromium_src-c2dacc9ec41232903ba700c6aef5ef98bfcb8af8.tar.gz
chromium_src-c2dacc9ec41232903ba700c6aef5ef98bfcb8af8.tar.bz2
Rename ChromeViews namespace to views
http://crbug.com/2188 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3495 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views/importer_lock_view.cc')
-rw-r--r--chrome/browser/views/importer_lock_view.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/chrome/browser/views/importer_lock_view.cc b/chrome/browser/views/importer_lock_view.cc
index edb7e6e..f940ce4 100644
--- a/chrome/browser/views/importer_lock_view.cc
+++ b/chrome/browser/views/importer_lock_view.cc
@@ -14,8 +14,8 @@
#include "chromium_strings.h"
#include "generated_resources.h"
-using ChromeViews::ColumnSet;
-using ChromeViews::GridLayout;
+using views::ColumnSet;
+using views::GridLayout;
// Default size of the dialog window.
static const int kDefaultWindowWidth = 320;
@@ -24,10 +24,10 @@ static const int kDefaultWindowHeight = 100;
ImporterLockView::ImporterLockView(ImporterHost* host)
: description_label_(NULL),
importer_host_(host) {
- description_label_ = new ChromeViews::Label(
+ description_label_ = new views::Label(
l10n_util::GetString(IDS_IMPORTER_LOCK_TEXT));
description_label_->SetMultiLine(true);
- description_label_->SetHorizontalAlignment(ChromeViews::Label::ALIGN_LEFT);
+ description_label_->SetHorizontalAlignment(views::Label::ALIGN_LEFT);
AddChildView(description_label_);
}
@@ -35,7 +35,7 @@ ImporterLockView::~ImporterLockView() {
}
gfx::Size ImporterLockView::GetPreferredSize() {
- return gfx::Size(ChromeViews::Window::GetLocalizedContentsSize(
+ return gfx::Size(views::Window::GetLocalizedContentsSize(
IDS_IMPORTLOCK_DIALOG_WIDTH_CHARS,
IDS_IMPORTLOCK_DIALOG_HEIGHT_LINES));
}
@@ -76,7 +76,7 @@ bool ImporterLockView::Cancel() {
return true;
}
-ChromeViews::View* ImporterLockView::GetContentsView() {
+views::View* ImporterLockView::GetContentsView() {
return this;
}