diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-26 09:29:08 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-26 09:29:08 +0000 |
commit | 1baa4f0d26b3bf8d48854a336a592ffa0d7672e4 (patch) | |
tree | 386f9fa69ac9a0af8b2fbfff897109516d0bb230 /chrome/browser/bookmarks/bookmark_utils.h | |
parent | bb9cc1e68711c66f2145f26642fc1c4d3ce3f432 (diff) | |
download | chromium_src-1baa4f0d26b3bf8d48854a336a592ffa0d7672e4.zip chromium_src-1baa4f0d26b3bf8d48854a336a592ffa0d7672e4.tar.gz chromium_src-1baa4f0d26b3bf8d48854a336a592ffa0d7672e4.tar.bz2 |
Small porting in chrome/
This is actually http://codereview.chromium.org/18446 without
process_watcher changes.
Review URL: http://codereview.chromium.org/18724
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8622 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/bookmarks/bookmark_utils.h')
-rw-r--r-- | chrome/browser/bookmarks/bookmark_utils.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/browser/bookmarks/bookmark_utils.h b/chrome/browser/bookmarks/bookmark_utils.h index 7a83caa..b41542b 100644 --- a/chrome/browser/bookmarks/bookmark_utils.h +++ b/chrome/browser/bookmarks/bookmark_utils.h @@ -42,6 +42,9 @@ void CloneDragData(BookmarkModel* model, BookmarkNode* parent, int index_to_add_at); +#if defined(OS_WIN) +// TODO(port): Make OpenAll portable (remove HWND). + // Recursively opens all bookmarks. |initial_disposition| dictates how the // first URL is opened, all subsequent URLs are opened as background tabs. // |navigator| is used to open the URLs. If |navigator| is NULL the last @@ -59,6 +62,7 @@ void OpenAll(HWND parent, PageNavigator* navigator, BookmarkNode* node, WindowOpenDisposition initial_disposition); +#endif // defined(OS_WIN) // Copies nodes onto the clipboard. If |remove_nodes| is true the nodes are // removed after copied to the clipboard. The nodes are copied in such a way |