Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(197)

Side by Side Diff: chrome/browser/gtk/first_run_dialog.cc

Issue 1705009: Changing linux platform for chromeos. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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/gtk/first_run_dialog.h" 5 #include "chrome/browser/gtk/first_run_dialog.h"
6 6
7 #include "app/l10n_util.h" 7 #include "app/l10n_util.h"
8 #include "app/resource_bundle.h" 8 #include "app/resource_bundle.h"
9 #include "base/message_loop.h" 9 #include "base/message_loop.h"
10 #include "base/utf_string_conversions.h" 10 #include "base/utf_string_conversions.h"
11 #include "chrome/browser/gtk/gtk_chrome_link_button.h" 11 #include "chrome/browser/gtk/gtk_chrome_link_button.h"
12 #include "chrome/browser/gtk/gtk_util.h" 12 #include "chrome/browser/gtk/gtk_util.h"
13 #include "chrome/browser/importer/importer_data_types.h" 13 #include "chrome/browser/importer/importer_data_types.h"
14 #include "chrome/browser/platform_util.h"
14 #include "chrome/browser/process_singleton.h" 15 #include "chrome/browser/process_singleton.h"
15 #include "chrome/browser/shell_integration.h" 16 #include "chrome/browser/shell_integration.h"
16 #include "chrome/common/platform_util.h"
17 #include "chrome/installer/util/google_update_settings.h" 17 #include "chrome/installer/util/google_update_settings.h"
18 #include "grit/chromium_strings.h" 18 #include "grit/chromium_strings.h"
19 #include "grit/generated_resources.h" 19 #include "grit/generated_resources.h"
20 #include "grit/locale_settings.h" 20 #include "grit/locale_settings.h"
21 21
22 #if defined(USE_LINUX_BREAKPAD) 22 #if defined(USE_LINUX_BREAKPAD)
23 #include "chrome/app/breakpad_linux.h" 23 #include "chrome/app/breakpad_linux.h"
24 #endif 24 #endif
25 25
26 // static 26 // static
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 192
193 void FirstRunDialog::FirstRunDone() { 193 void FirstRunDialog::FirstRunDone() {
194 // Set preference to show first run bubble and welcome page. 194 // Set preference to show first run bubble and welcome page.
195 FirstRun::SetShowFirstRunBubblePref(); 195 FirstRun::SetShowFirstRunBubblePref();
196 FirstRun::SetShowWelcomePagePref(); 196 FirstRun::SetShowWelcomePagePref();
197 197
198 gtk_widget_destroy(dialog_); 198 gtk_widget_destroy(dialog_);
199 MessageLoop::current()->Quit(); 199 MessageLoop::current()->Quit();
200 delete this; 200 delete this;
201 } 201 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698