diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-25 01:27:31 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-25 01:27:31 +0000 |
commit | 04999e660bef3b6df5518acea9749878af736b8e (patch) | |
tree | 9dcc816280dfd032b39a40813bfdb6a7fdca7793 /chrome/browser/first_run_gtk.cc | |
parent | 26f34dd42f1af46a4c68e9082290c359706685db (diff) | |
download | chromium_src-04999e660bef3b6df5518acea9749878af736b8e.zip chromium_src-04999e660bef3b6df5518acea9749878af736b8e.tar.gz chromium_src-04999e660bef3b6df5518acea9749878af736b8e.tar.bz2 |
linux: drop temp_scaffolding_stubs
It was mostly unneeded, but I had to excise the last bits of RLZ and move
some NOTIMPLEMENTED bits to where they belong.
Review URL: http://codereview.chromium.org/219042
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27161 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/first_run_gtk.cc')
-rw-r--r-- | chrome/browser/first_run_gtk.cc | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/chrome/browser/first_run_gtk.cc b/chrome/browser/first_run_gtk.cc index dcd6074..4a78983 100644 --- a/chrome/browser/first_run_gtk.cc +++ b/chrome/browser/first_run_gtk.cc @@ -1,4 +1,3 @@ - // Copyright (c) 2009 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. @@ -13,3 +12,18 @@ bool OpenFirstRunDialog(Profile* profile, bool homepage_defined, // while this process is active. return FirstRunDialog::Show(profile); } + +bool FirstRun::ProcessMasterPreferences(const FilePath& user_data_dir, + const FilePath& master_prefs_path, + std::vector<std::wstring>* new_tabs, + int* ping_delay, + bool* homepage_defined) { + NOTIMPLEMENTED(); + return true; +} + +// static +int FirstRun::ImportNow(Profile* profile, const CommandLine& cmdline) { + // http://code.google.com/p/chromium/issues/detail?id=11971 + return 0; +} |