| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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/common/temp_scaffolding_stubs.h" | 5 #include "chrome/common/temp_scaffolding_stubs.h" |
| 6 | 6 |
| 7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 NOTIMPLEMENTED(); | 138 NOTIMPLEMENTED(); |
| 139 } | 139 } |
| 140 #endif // defined(OS_MACOSX) | 140 #endif // defined(OS_MACOSX) |
| 141 | 141 |
| 142 //-------------------------------------------------------------------------- | 142 //-------------------------------------------------------------------------- |
| 143 | 143 |
| 144 | 144 |
| 145 // static | 145 // static |
| 146 bool FirstRun::ProcessMasterPreferences(const FilePath& user_data_dir, | 146 bool FirstRun::ProcessMasterPreferences(const FilePath& user_data_dir, |
| 147 const FilePath& master_prefs_path, | 147 const FilePath& master_prefs_path, |
| 148 int* preference_details, | 148 std::vector<std::wstring>* new_tabs, |
| 149 std::vector<std::wstring>* new_tabs) { | 149 int* ping_delay) { |
| 150 // http://code.google.com/p/chromium/issues/detail?id=11971 | 150 // http://code.google.com/p/chromium/issues/detail?id=11971 |
| 151 // Pretend we processed them correctly. | 151 // Pretend we processed them correctly. |
| 152 return true; | 152 return true; |
| 153 } | 153 } |
| 154 | 154 |
| 155 // static | 155 // static |
| 156 int FirstRun::ImportNow(Profile* profile, const CommandLine& cmdline) { | 156 int FirstRun::ImportNow(Profile* profile, const CommandLine& cmdline) { |
| 157 // http://code.google.com/p/chromium/issues/detail?id=11971 | 157 // http://code.google.com/p/chromium/issues/detail?id=11971 |
| 158 return 0; | 158 return 0; |
| 159 } | 159 } |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 Handler* handler) { | 411 Handler* handler) { |
| 412 NOTIMPLEMENTED(); | 412 NOTIMPLEMENTED(); |
| 413 } | 413 } |
| 414 | 414 |
| 415 void BookmarkManager::SelectInTree(Profile* profile, const BookmarkNode* node) { | 415 void BookmarkManager::SelectInTree(Profile* profile, const BookmarkNode* node) { |
| 416 } | 416 } |
| 417 void BookmarkManager::Show(Profile* profile) { | 417 void BookmarkManager::Show(Profile* profile) { |
| 418 } | 418 } |
| 419 | 419 |
| 420 #endif | 420 #endif |
| OLD | NEW |