summaryrefslogtreecommitdiffstats
path: root/chrome/browser/first_run_gtk.cc
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-01 21:15:32 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-01 21:15:32 +0000
commitb117bb496f7983ac8e270feea3fd479727a0a2a8 (patch)
tree3ff025b3e79400e45ab7bcb98599dbaef04e4f4a /chrome/browser/first_run_gtk.cc
parent719863ea3ed530d8dffaf46c60fde6f7589b8e5a (diff)
downloadchromium_src-b117bb496f7983ac8e270feea3fd479727a0a2a8.zip
chromium_src-b117bb496f7983ac8e270feea3fd479727a0a2a8.tar.gz
chromium_src-b117bb496f7983ac8e270feea3fd479727a0a2a8.tar.bz2
linux: first run text update.
Review URL: http://codereview.chromium.org/118076 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17352 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/first_run_gtk.cc')
-rw-r--r--chrome/browser/first_run_gtk.cc17
1 files changed, 16 insertions, 1 deletions
diff --git a/chrome/browser/first_run_gtk.cc b/chrome/browser/first_run_gtk.cc
index 9525d91a..8d9fe18 100644
--- a/chrome/browser/first_run_gtk.cc
+++ b/chrome/browser/first_run_gtk.cc
@@ -46,9 +46,24 @@ void OpenFirstRunDialog(Profile* profile, ProcessSingleton* process_singleton) {
// Force a size on the vbox so the labels wrap.
gtk_widget_set_size_request(vbox, 400, -1);
+ GtkWidget* privacy_label = gtk_label_new(
+ "This version of Google Chrome for Linux is not appropriate for "
+ "general consumer use. Certain privacy features are unavailable "
+ "at this time as described in our privacy policy at");
+ gtk_misc_set_alignment(GTK_MISC(privacy_label), 0, 0);
+ gtk_label_set_line_wrap(GTK_LABEL(privacy_label), TRUE);
+ gtk_box_pack_start(GTK_BOX(vbox), privacy_label, FALSE, FALSE, 0);
+
+ GtkWidget* url_label = gtk_label_new(NULL);
+ gtk_label_set_markup(GTK_LABEL(url_label),
+ "<tt>http://www.google.com/chrome/intl/en/privacy_linux.html</tt>");
+ // Set selectable to allow copy and paste.
+ gtk_label_set_selectable(GTK_LABEL(url_label), TRUE);
+ gtk_box_pack_start(GTK_BOX(vbox), url_label, FALSE, FALSE, 0);
+
GtkWidget* intro_label = gtk_label_new(
"This dialog would normally prompt you to import information from other "
- "browsers, but that is not yet fully implemented.\n\n"
+ "browsers, but that is not yet fully implemented.\n"
"Instead, we have only one important setting available: Crash dumps. "
"We cannot fix your crashes without your crash reports, so there's "
"little reason to run a dev channel build without turning them on.");