Chromium Code Reviews

Side by Side Diff: chrome/browser/first_run/first_run_gtk.cc

Issue 6122006: Cleanup: Remove unneeded includes of pref_names.h (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | 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/first_run/first_run.h" 5 #include "chrome/browser/first_run/first_run.h"
6 6
7 #include "app/app_switches.h" 7 #include "app/app_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/file_path.h" 9 #include "base/file_path.h"
10 #include "base/file_util.h" 10 #include "base/file_util.h"
11 #include "base/path_service.h" 11 #include "base/path_service.h"
12 #include "base/process_util.h" 12 #include "base/process_util.h"
13 #include "base/string_piece.h" 13 #include "base/string_piece.h"
14 #include "base/string_util.h" 14 #include "base/string_util.h"
15 #include "base/utf_string_conversions.h" 15 #include "base/utf_string_conversions.h"
16 #include "base/values.h" 16 #include "base/values.h"
17 #include "chrome/browser/gtk/first_run_dialog.h" 17 #include "chrome/browser/gtk/first_run_dialog.h"
18 #include "chrome/browser/shell_integration.h" 18 #include "chrome/browser/shell_integration.h"
19 #include "chrome/common/chrome_switches.h" 19 #include "chrome/common/chrome_switches.h"
20 #include "chrome/common/pref_names.h"
21 #include "chrome/common/result_codes.h" 20 #include "chrome/common/result_codes.h"
22 #include "chrome/installer/util/google_update_settings.h" 21 #include "chrome/installer/util/google_update_settings.h"
23 #include "googleurl/src/gurl.h" 22 #include "googleurl/src/gurl.h"
24 23
25 // TODO(port): This is just a piece of the silent import functionality from 24 // TODO(port): This is just a piece of the silent import functionality from
26 // ImportSettings for Windows. It would be nice to get the rest of it ported. 25 // ImportSettings for Windows. It would be nice to get the rest of it ported.
27 bool FirstRun::ImportBookmarks(const FilePath& import_bookmarks_path) { 26 bool FirstRun::ImportBookmarks(const FilePath& import_bookmarks_path) {
28 const CommandLine& cmdline = *CommandLine::ForCurrentProcess(); 27 const CommandLine& cmdline = *CommandLine::ForCurrentProcess();
29 CommandLine import_cmd(cmdline.GetProgram()); 28 CommandLine import_cmd(cmdline.GetProgram());
30 29
(...skipping 62 matching lines...)
93 bool FirstRun::IsOrganic() { 92 bool FirstRun::IsOrganic() {
94 // We treat all installs as organic. 93 // We treat all installs as organic.
95 return true; 94 return true;
96 } 95 }
97 96
98 // static 97 // static
99 void FirstRun::PlatformSetup() { 98 void FirstRun::PlatformSetup() {
100 // Things that Windows does here (creating a desktop icon, for example) are 99 // Things that Windows does here (creating a desktop icon, for example) are
101 // handled at install time on Linux. 100 // handled at install time on Linux.
102 } 101 }
OLDNEW
« no previous file with comments | « chrome/browser/extensions/external_policy_extension_provider.cc ('k') | chrome/browser/first_run/first_run_win.cc » ('j') | no next file with comments »

Powered by Google App Engine