| 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 <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/gfx/rect.h" | 9 #include "base/gfx/rect.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 | 261 |
| 262 void BookmarkEditor::Show(gfx::NativeView parent_window, | 262 void BookmarkEditor::Show(gfx::NativeView parent_window, |
| 263 Profile* profile, | 263 Profile* profile, |
| 264 const BookmarkNode* parent, | 264 const BookmarkNode* parent, |
| 265 const BookmarkNode* node, | 265 const BookmarkNode* node, |
| 266 Configuration configuration, | 266 Configuration configuration, |
| 267 Handler* handler) { | 267 Handler* handler) { |
| 268 NOTIMPLEMENTED(); | 268 NOTIMPLEMENTED(); |
| 269 } | 269 } |
| 270 | 270 |
| 271 void BookmarkManager::SelectInTree(Profile* profile, const BookmarkNode* node) { | |
| 272 } | |
| 273 void BookmarkManager::Show(Profile* profile) { | |
| 274 } | |
| 275 | |
| 276 #endif | 271 #endif |
| 277 | 272 |
| OLD | NEW |