| Index: chrome/browser/tab_contents/tab_contents.cc
|
| ===================================================================
|
| --- chrome/browser/tab_contents/tab_contents.cc (revision 39450)
|
| +++ chrome/browser/tab_contents/tab_contents.cc (working copy)
|
| @@ -2067,6 +2067,15 @@
|
| return autofill_manager_.get();
|
| }
|
|
|
| +RenderViewHostDelegate::BookmarkDrag* TabContents::GetBookmarkDragDelegate() {
|
| + return bookmark_drag_;
|
| +}
|
| +
|
| +void TabContents::SetBookmarkDragDelegate(
|
| + RenderViewHostDelegate::BookmarkDrag* bookmark_drag) {
|
| + bookmark_drag_ = bookmark_drag;
|
| +}
|
| +
|
| RendererPreferences TabContents::GetRendererPrefs(Profile* profile) const {
|
| return renderer_preferences_;
|
| }
|
|
|