| 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_NODE_DATA_H_ | 5 #ifndef CHROME_BROWSER_BOOKMARKS_BOOKMARK_NODE_DATA_H_ |
| 6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_NODE_DATA_H_ | 6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_NODE_DATA_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 // The actual elements written to the clipboard. | 153 // The actual elements written to the clipboard. |
| 154 std::vector<Element> elements; | 154 std::vector<Element> elements; |
| 155 | 155 |
| 156 // The MIME type for the clipboard format for BookmarkNodeData. | 156 // The MIME type for the clipboard format for BookmarkNodeData. |
| 157 static const char* kClipboardFormatString; | 157 static const char* kClipboardFormatString; |
| 158 | 158 |
| 159 static bool ClipboardContainsBookmarks(); | 159 static bool ClipboardContainsBookmarks(); |
| 160 | 160 |
| 161 private: | 161 private: |
| 162 // Path of the profile we originated from. | 162 // Path of the profile we originated from. |
| 163 FilePath::StringType profile_path_; | 163 FilePath profile_path_; |
| 164 }; | 164 }; |
| 165 | 165 |
| 166 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_NODE_DATA_H_ | 166 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_NODE_DATA_H_ |
| OLD | NEW |