1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
// Copyright (c) 2010 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.
#include "chrome/browser/views/database_open_info_view.h"
#include "app/l10n_util.h"
#include "base/utf_string_conversions.h"
#include "grit/generated_resources.h"
namespace {
const int kInfoLabelIds[] = {
IDS_COOKIES_COOKIE_DOMAIN_LABEL,
IDS_COOKIES_WEB_DATABASE_NAME,
IDS_COOKIES_WEB_DATABASE_DESCRIPTION_LABEL,
IDS_COOKIES_SIZE_LABEL
};
} // namespace
///////////////////////////////////////////////////////////////////////////////
// DatabaseOpenInfoView, public:
DatabaseOpenInfoView::DatabaseOpenInfoView()
: GenericInfoView(ARRAYSIZE(kInfoLabelIds), kInfoLabelIds) {
}
void DatabaseOpenInfoView::SetFields(const std::string& host,
const string16& database_name,
const string16& display_name,
unsigned long estimated_size) {
string16 url = UTF8ToUTF16(host);
string16 size = FormatBytes(estimated_size,
GetByteDisplayUnits(estimated_size),
true);
int row = 0;
SetValue(row++, url);
SetValue(row++, database_name);
SetValue(row++, display_name);
SetValue(row++, size);
}
|