| 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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 return true; | 191 return true; |
| 192 } | 192 } |
| 193 | 193 |
| 194 // static | 194 // static |
| 195 Upgrade::TryResult ShowTryChromeDialog() { | 195 Upgrade::TryResult ShowTryChromeDialog() { |
| 196 return Upgrade::TD_NOT_NOW; | 196 return Upgrade::TD_NOT_NOW; |
| 197 } | 197 } |
| 198 | 198 |
| 199 //-------------------------------------------------------------------------- | 199 //-------------------------------------------------------------------------- |
| 200 | 200 |
| 201 #if defined(OS_MACOSX) |
| 201 void InstallJankometer(const CommandLine&) { | 202 void InstallJankometer(const CommandLine&) { |
| 202 // http://code.google.com/p/chromium/issues/detail?id=8077 | 203 // http://code.google.com/p/chromium/issues/detail?id=8077 |
| 203 } | 204 } |
| 204 | 205 |
| 205 void UninstallJankometer() { | 206 void UninstallJankometer() { |
| 206 // http://code.google.com/p/chromium/issues/detail?id=8077 | 207 // http://code.google.com/p/chromium/issues/detail?id=8077 |
| 207 } | 208 } |
| 209 #endif |
| 208 | 210 |
| 209 //-------------------------------------------------------------------------- | 211 //-------------------------------------------------------------------------- |
| 210 | 212 |
| 211 void RLZTracker::CleanupRlz() { | 213 void RLZTracker::CleanupRlz() { |
| 212 // http://code.google.com/p/chromium/issues/detail?id=8152 | 214 // http://code.google.com/p/chromium/issues/detail?id=8152 |
| 213 } | 215 } |
| 214 | 216 |
| 215 bool RLZTracker::GetAccessPointRlz(AccessPoint point, std::wstring* rlz) { | 217 bool RLZTracker::GetAccessPointRlz(AccessPoint point, std::wstring* rlz) { |
| 216 // http://code.google.com/p/chromium/issues/detail?id=8152 | 218 // http://code.google.com/p/chromium/issues/detail?id=8152 |
| 217 return false; | 219 return false; |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 Handler* handler) { | 433 Handler* handler) { |
| 432 NOTIMPLEMENTED(); | 434 NOTIMPLEMENTED(); |
| 433 } | 435 } |
| 434 | 436 |
| 435 void BookmarkManager::SelectInTree(Profile* profile, const BookmarkNode* node) { | 437 void BookmarkManager::SelectInTree(Profile* profile, const BookmarkNode* node) { |
| 436 } | 438 } |
| 437 void BookmarkManager::Show(Profile* profile) { | 439 void BookmarkManager::Show(Profile* profile) { |
| 438 } | 440 } |
| 439 | 441 |
| 440 #endif | 442 #endif |
| OLD | NEW |