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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
// Copyright 2014 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/ui/views/first_run_dialog.h"
#include "base/message_loop/message_loop.h"
#include "base/run_loop.h"
#include "chrome/browser/first_run/first_run.h"
#include "chrome/browser/platform_util.h"
#include "chrome/browser/shell_integration.h"
#include "chrome/common/pref_names.h"
#include "chrome/common/url_constants.h"
#include "chrome/grit/chromium_strings.h"
#include "chrome/grit/generated_resources.h"
#include "chrome/grit/locale_settings.h"
#include "chrome/installer/util/google_update_settings.h"
#include "components/crash/app/breakpad_linux.h"
#include "grit/components_strings.h"
#include "ui/aura/env.h"
#include "ui/aura/window.h"
#include "ui/aura/window_event_dispatcher.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/views/controls/button/checkbox.h"
#include "ui/views/controls/link.h"
#include "ui/views/layout/grid_layout.h"
#include "ui/views/layout/layout_constants.h"
#include "ui/views/widget/widget.h"
#include "ui/views/window/dialog_delegate.h"
#if defined(GOOGLE_CHROME_BUILD)
#include "base/prefs/pref_service.h"
#include "chrome/browser/browser_process.h"
#endif
using views::GridLayout;
namespace first_run {
bool ShowFirstRunDialog(Profile* profile) {
return FirstRunDialog::Show(profile);
}
} // namespace first_run
// static
bool FirstRunDialog::Show(Profile* profile) {
bool dialog_shown = false;
#if defined(GOOGLE_CHROME_BUILD)
// If the metrics reporting is managed, we won't ask.
const PrefService::Preference* metrics_reporting_pref =
g_browser_process->local_state()->FindPreference(
prefs::kMetricsReportingEnabled);
if (!metrics_reporting_pref ||
!metrics_reporting_pref->IsManaged()) {
FirstRunDialog* dialog = new FirstRunDialog(profile);
views::DialogDelegate::CreateDialogWidget(dialog, NULL, NULL)->Show();
base::MessageLoopForUI* loop = base::MessageLoopForUI::current();
base::MessageLoopForUI::ScopedNestableTaskAllower allow_nested(loop);
base::RunLoop run_loop;
dialog->quit_runloop_ = run_loop.QuitClosure();
run_loop.Run();
dialog_shown = true;
}
#endif // defined(GOOGLE_CHROME_BUILD)
return dialog_shown;
}
FirstRunDialog::FirstRunDialog(Profile* profile)
: profile_(profile),
make_default_(NULL),
report_crashes_(NULL) {
GridLayout* layout = GridLayout::CreatePanel(this);
SetLayoutManager(layout);
const int related_y = views::kRelatedControlVerticalSpacing;
views::ColumnSet* column_set = layout->AddColumnSet(0);
column_set->AddColumn(GridLayout::FILL, GridLayout::CENTER, 0,
GridLayout::USE_PREF, 0, 0);
layout->StartRow(0, 0);
make_default_ = new views::Checkbox(l10n_util::GetStringUTF16(
IDS_FR_CUSTOMIZE_DEFAULT_BROWSER));
make_default_->SetChecked(true);
layout->AddView(make_default_);
layout->StartRowWithPadding(0, 0, 0, related_y);
report_crashes_ = new views::Checkbox(l10n_util::GetStringUTF16(
IDS_OPTIONS_ENABLE_LOGGING));
layout->AddView(report_crashes_);
}
FirstRunDialog::~FirstRunDialog() {
}
void FirstRunDialog::Done() {
CHECK(!quit_runloop_.is_null());
quit_runloop_.Run();
}
views::View* FirstRunDialog::CreateExtraView() {
views::Link* link = new views::Link(l10n_util::GetStringUTF16(
IDS_LEARN_MORE));
link->set_listener(this);
return link;
}
void FirstRunDialog::OnClosed() {
first_run::SetShouldShowWelcomePage();
Done();
}
bool FirstRunDialog::Accept() {
GetWidget()->Hide();
if (report_crashes_ && report_crashes_->checked()) {
if (GoogleUpdateSettings::SetCollectStatsConsent(true))
breakpad::InitCrashReporter(std::string());
} else {
GoogleUpdateSettings::SetCollectStatsConsent(false);
}
if (make_default_ && make_default_->checked())
ShellIntegration::SetAsDefaultBrowser();
Done();
return true;
}
int FirstRunDialog::GetDialogButtons() const {
return ui::DIALOG_BUTTON_OK;
}
void FirstRunDialog::LinkClicked(views::Link* source, int event_flags) {
platform_util::OpenExternal(profile_, GURL(chrome::kLearnMoreReportingURL));
}
|