| 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 return true; | 168 return true; |
| 169 } | 169 } |
| 170 | 170 |
| 171 // static | 171 // static |
| 172 bool Upgrade::SwapNewChromeExeIfPresent() { | 172 bool Upgrade::SwapNewChromeExeIfPresent() { |
| 173 // http://code.google.com/p/chromium/issues/detail?id=9295 | 173 // http://code.google.com/p/chromium/issues/detail?id=9295 |
| 174 return true; | 174 return true; |
| 175 } | 175 } |
| 176 | 176 |
| 177 // static | 177 // static |
| 178 Upgrade::TryResult ShowTryChromeDialog() { | 178 Upgrade::TryResult ShowTryChromeDialog(size_t version) { |
| 179 return Upgrade::TD_NOT_NOW; | 179 return Upgrade::TD_NOT_NOW; |
| 180 } | 180 } |
| 181 | 181 |
| 182 //-------------------------------------------------------------------------- | 182 //-------------------------------------------------------------------------- |
| 183 | 183 |
| 184 #if defined(OS_MACOSX) | 184 #if defined(OS_MACOSX) |
| 185 void InstallJankometer(const CommandLine&) { | 185 void InstallJankometer(const CommandLine&) { |
| 186 // http://code.google.com/p/chromium/issues/detail?id=8077 | 186 // http://code.google.com/p/chromium/issues/detail?id=8077 |
| 187 } | 187 } |
| 188 | 188 |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 Handler* handler) { | 312 Handler* handler) { |
| 313 NOTIMPLEMENTED(); | 313 NOTIMPLEMENTED(); |
| 314 } | 314 } |
| 315 | 315 |
| 316 void BookmarkManager::SelectInTree(Profile* profile, const BookmarkNode* node) { | 316 void BookmarkManager::SelectInTree(Profile* profile, const BookmarkNode* node) { |
| 317 } | 317 } |
| 318 void BookmarkManager::Show(Profile* profile) { | 318 void BookmarkManager::Show(Profile* profile) { |
| 319 } | 319 } |
| 320 | 320 |
| 321 #endif | 321 #endif |
| OLD | NEW |