| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #ifndef CHROME_BROWSER_BOOKMARKS_BOOKMARK_DRAG_DATA_H_ | 5 #ifndef CHROME_BROWSER_BOOKMARKS_BOOKMARK_DRAG_DATA_H_ |
| 6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_DRAG_DATA_H_ | 6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_DRAG_DATA_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/file_path.h" | 11 #include "base/file_path.h" |
| 12 #include "base/string16.h" | 12 #include "base/string16.h" |
| 13 #include "googleurl/src/gurl.h" | 13 #include "googleurl/src/gurl.h" |
| 14 | 14 |
| 15 // TODO(port): Port this file. | |
| 16 #if defined(TOOLKIT_VIEWS) | 15 #if defined(TOOLKIT_VIEWS) |
| 17 #include "app/os_exchange_data.h" | 16 #include "app/os_exchange_data.h" |
| 18 #else | |
| 19 #include "chrome/common/temp_scaffolding_stubs.h" | |
| 20 #endif | 17 #endif |
| 21 | 18 |
| 22 class BookmarkModel; | 19 class BookmarkModel; |
| 23 class BookmarkNode; | 20 class BookmarkNode; |
| 24 class OSExchangeData; | 21 class OSExchangeData; |
| 25 class Pickle; | 22 class Pickle; |
| 26 class Profile; | 23 class Profile; |
| 27 | 24 |
| 28 // BookmarkDragData is used to represent the following: | 25 // BookmarkDragData is used to represent the following: |
| 29 // | 26 // |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 static const char* kClipboardFormatString; | 134 static const char* kClipboardFormatString; |
| 138 | 135 |
| 139 static bool ClipboardContainsBookmarks(); | 136 static bool ClipboardContainsBookmarks(); |
| 140 | 137 |
| 141 private: | 138 private: |
| 142 // Path of the profile we originated from. | 139 // Path of the profile we originated from. |
| 143 FilePath::StringType profile_path_; | 140 FilePath::StringType profile_path_; |
| 144 }; | 141 }; |
| 145 | 142 |
| 146 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_DRAG_DATA_H_ | 143 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_DRAG_DATA_H_ |
| OLD | NEW |