| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_NODE_DATA_H_ |
| 6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_NODE_DATA_H_ | 6 #define COMPONENTS_BOOKMARKS_CORE_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/core/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" |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after 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 // CHROME_BROWSER_BOOKMARKS_BOOKMARK_NODE_DATA_H_ | 174 #endif // COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_NODE_DATA_H_ |
| OLD | NEW |