OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_NODE_DATA_H_ | 5 #ifndef COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_NODE_DATA_H_ |
6 #define COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_NODE_DATA_H_ | 6 #define COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_NODE_DATA_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
11 #include "base/strings/string16.h" | 11 #include "base/strings/string16.h" |
12 #include "base/time/time.h" | 12 #include "base/time/time.h" |
13 #include "components/bookmarks/core/browser/bookmark_node.h" | 13 #include "components/bookmarks/browser/bookmark_node.h" |
14 #include "ui/base/clipboard/clipboard_types.h" | 14 #include "ui/base/clipboard/clipboard_types.h" |
15 | 15 |
16 #include "url/gurl.h" | 16 #include "url/gurl.h" |
17 #if defined(TOOLKIT_VIEWS) | 17 #if defined(TOOLKIT_VIEWS) |
18 #include "ui/base/dragdrop/os_exchange_data.h" | 18 #include "ui/base/dragdrop/os_exchange_data.h" |
19 #endif | 19 #endif |
20 | 20 |
21 class BookmarkModel; | 21 class BookmarkModel; |
22 class Pickle; | 22 class Pickle; |
23 class PickleIterator; | 23 class PickleIterator; |
(...skipping 140 matching lines...) Loading... |
164 bool IsFromProfilePath(const base::FilePath& profile_path) const; | 164 bool IsFromProfilePath(const base::FilePath& profile_path) const; |
165 | 165 |
166 // The actual elements written to the clipboard. | 166 // The actual elements written to the clipboard. |
167 std::vector<Element> elements; | 167 std::vector<Element> elements; |
168 | 168 |
169 private: | 169 private: |
170 // Path of the profile we originated from. | 170 // Path of the profile we originated from. |
171 base::FilePath profile_path_; | 171 base::FilePath profile_path_; |
172 }; | 172 }; |
173 | 173 |
174 #endif // COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_NODE_DATA_H_ | 174 #endif // COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_NODE_DATA_H_ |
OLD | NEW |