| 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 "temp_scaffolding_stubs.h" | 5 #include "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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 } | 204 } |
| 205 | 205 |
| 206 // static | 206 // static |
| 207 int FirstRun::ImportNow(Profile* profile, const CommandLine& cmdline) { | 207 int FirstRun::ImportNow(Profile* profile, const CommandLine& cmdline) { |
| 208 NOTIMPLEMENTED(); | 208 NOTIMPLEMENTED(); |
| 209 return 0; | 209 return 0; |
| 210 } | 210 } |
| 211 | 211 |
| 212 // static | 212 // static |
| 213 bool Upgrade::IsBrowserAlreadyRunning() { | 213 bool Upgrade::IsBrowserAlreadyRunning() { |
| 214 NOTIMPLEMENTED(); | 214 // http://code.google.com/p/chromium/issues/detail?id=9295 |
| 215 return false; | 215 return false; |
| 216 } | 216 } |
| 217 | 217 |
| 218 // static | 218 // static |
| 219 bool Upgrade::RelaunchChromeBrowser(const CommandLine& command_line) { | 219 bool Upgrade::RelaunchChromeBrowser(const CommandLine& command_line) { |
| 220 NOTIMPLEMENTED(); | 220 // http://code.google.com/p/chromium/issues/detail?id=9295 |
| 221 return true; | 221 return true; |
| 222 } | 222 } |
| 223 | 223 |
| 224 // static | 224 // static |
| 225 bool Upgrade::SwapNewChromeExeIfPresent() { | 225 bool Upgrade::SwapNewChromeExeIfPresent() { |
| 226 NOTIMPLEMENTED(); | 226 // http://code.google.com/p/chromium/issues/detail?id=9295 |
| 227 return true; | 227 return true; |
| 228 } | 228 } |
| 229 | 229 |
| 230 void OpenFirstRunDialog(Profile* profile) { NOTIMPLEMENTED(); } | 230 void OpenFirstRunDialog(Profile* profile) { NOTIMPLEMENTED(); } |
| 231 | 231 |
| 232 //-------------------------------------------------------------------------- | 232 //-------------------------------------------------------------------------- |
| 233 | 233 |
| 234 void InstallJankometer(const CommandLine&) { | 234 void InstallJankometer(const CommandLine&) { |
| 235 // http://code.google.com/p/chromium/issues/detail?id=8077 | 235 // http://code.google.com/p/chromium/issues/detail?id=8077 |
| 236 } | 236 } |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 return new views::Window(); | 362 return new views::Window(); |
| 363 } | 363 } |
| 364 | 364 |
| 365 namespace download_util { | 365 namespace download_util { |
| 366 | 366 |
| 367 void DragDownload(const DownloadItem* download, SkBitmap* icon) { | 367 void DragDownload(const DownloadItem* download, SkBitmap* icon) { |
| 368 NOTIMPLEMENTED(); | 368 NOTIMPLEMENTED(); |
| 369 } | 369 } |
| 370 | 370 |
| 371 } // namespace download_util | 371 } // namespace download_util |
| OLD | NEW |