| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/ui/gtk/first_run_dialog.h" | 5 #include "chrome/browser/ui/gtk/first_run_dialog.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/i18n/rtl.h" | 10 #include "base/i18n/rtl.h" |
| 11 #include "base/message_loop.h" | 11 #include "base/message_loop.h" |
| 12 #include "base/utf_string_conversions.h" | 12 #include "base/utf_string_conversions.h" |
| 13 #include "chrome/browser/first_run/first_run_dialog.h" | 13 #include "chrome/browser/first_run/first_run_dialog.h" |
| 14 #include "chrome/browser/google/google_util.h" | 14 #include "chrome/browser/google/google_util.h" |
| 15 #include "chrome/browser/platform_util.h" | 15 #include "chrome/browser/platform_util.h" |
| 16 #include "chrome/browser/process_singleton.h" | 16 #include "chrome/browser/process_singleton.h" |
| 17 #include "chrome/browser/profiles/profile.h" | 17 #include "chrome/browser/profiles/profile.h" |
| 18 #include "chrome/browser/search_engines/template_url.h" | 18 #include "chrome/browser/search_engines/template_url.h" |
| 19 #include "chrome/browser/search_engines/template_url_service.h" | 19 #include "chrome/browser/search_engines/template_url_service.h" |
| 20 #include "chrome/browser/search_engines/template_url_service_factory.h" | 20 #include "chrome/browser/search_engines/template_url_service_factory.h" |
| 21 #include "chrome/browser/shell_integration.h" | 21 #include "chrome/browser/shell_integration.h" |
| 22 #include "chrome/browser/ui/gtk/gtk_chrome_link_button.h" | 22 #include "chrome/browser/ui/gtk/gtk_chrome_link_button.h" |
| 23 #include "chrome/browser/ui/gtk/gtk_floating_container.h" | |
| 24 #include "chrome/browser/ui/gtk/gtk_util.h" | 23 #include "chrome/browser/ui/gtk/gtk_util.h" |
| 25 #include "chrome/common/pref_names.h" | 24 #include "chrome/common/pref_names.h" |
| 26 #include "chrome/common/url_constants.h" | 25 #include "chrome/common/url_constants.h" |
| 27 #include "chrome/installer/util/google_update_settings.h" | 26 #include "chrome/installer/util/google_update_settings.h" |
| 28 #include "grit/chromium_strings.h" | 27 #include "grit/chromium_strings.h" |
| 29 #include "grit/generated_resources.h" | 28 #include "grit/generated_resources.h" |
| 30 #include "grit/locale_settings.h" | 29 #include "grit/locale_settings.h" |
| 31 #include "grit/theme_resources.h" | 30 #include "grit/theme_resources.h" |
| 31 #include "ui/base/gtk/gtk_floating_container.h" |
| 32 #include "ui/base/l10n/l10n_util.h" | 32 #include "ui/base/l10n/l10n_util.h" |
| 33 #include "ui/base/resource/resource_bundle.h" | 33 #include "ui/base/resource/resource_bundle.h" |
| 34 #include "ui/gfx/image/image.h" | 34 #include "ui/gfx/image/image.h" |
| 35 | 35 |
| 36 #if defined(USE_LINUX_BREAKPAD) | 36 #if defined(USE_LINUX_BREAKPAD) |
| 37 #include "chrome/app/breakpad_linux.h" | 37 #include "chrome/app/breakpad_linux.h" |
| 38 #endif | 38 #endif |
| 39 | 39 |
| 40 #if defined(GOOGLE_CHROME_BUILD) | 40 #if defined(GOOGLE_CHROME_BUILD) |
| 41 #include "chrome/browser/browser_process.h" | 41 #include "chrome/browser/browser_process.h" |
| (...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 } | 431 } |
| 432 | 432 |
| 433 void FirstRunDialog::FirstRunDone() { | 433 void FirstRunDialog::FirstRunDone() { |
| 434 FirstRun::SetShowWelcomePagePref(); | 434 FirstRun::SetShowWelcomePagePref(); |
| 435 | 435 |
| 436 if (dialog_) | 436 if (dialog_) |
| 437 gtk_widget_destroy(dialog_); | 437 gtk_widget_destroy(dialog_); |
| 438 MessageLoop::current()->Quit(); | 438 MessageLoop::current()->Quit(); |
| 439 delete this; | 439 delete this; |
| 440 } | 440 } |
| OLD | NEW |