Index: chrome/common/temp_scaffolding_stubs.cc |
diff --git a/chrome/common/temp_scaffolding_stubs.cc b/chrome/common/temp_scaffolding_stubs.cc |
index 58a7bdcdbc19160f52aa42a07ddd45f0bd1acc9d..39371e4adcfa7188f09a86351aab2278d47a1cdd 100644 |
--- a/chrome/common/temp_scaffolding_stubs.cc |
+++ b/chrome/common/temp_scaffolding_stubs.cc |
@@ -28,7 +28,11 @@ |
#endif |
#if defined(TOOLKIT_VIEWS) |
+#include "chrome/browser/bookmarks/bookmark_editor.h" |
+#include "chrome/browser/bookmarks/bookmark_manager.h" |
+#include "chrome/browser/tab_contents/constrained_window.h" |
#include "views/controls/menu/chrome_menu.h" |
+#include "views/controls/single_split_view.h" |
#endif |
class InfoBar; |
@@ -412,4 +416,25 @@ wchar_t MenuItemView::GetMnemonic() { |
} // namespace views |
+ConstrainedWindow* ConstrainedWindow::CreateConstrainedDialog( |
+ TabContents* owner, |
+ ConstrainedWindowDelegate* delegate) { |
+ NOTIMPLEMENTED(); |
+ return NULL; |
+} |
+ |
+void BookmarkEditor::Show(gfx::NativeView parent_window, |
+ Profile* profile, |
+ const BookmarkNode* parent, |
+ const BookmarkNode* node, |
+ Configuration configuration, |
+ Handler* handler) { |
+ NOTIMPLEMENTED(); |
+} |
+ |
+void BookmarkManager::SelectInTree(Profile* profile, const BookmarkNode* node) { |
+} |
+void BookmarkManager::Show(Profile* profile) { |
+} |
+ |
#endif |