OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_PASTEBOARD_HELPER_MAC_H_ | 5 #ifndef CHROME_BROWSER_BOOKMARKS_BOOKMARK_PASTEBOARD_HELPER_MAC_H_ |
6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_PASTEBOARD_HELPER_MAC_H_ | 6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_PASTEBOARD_HELPER_MAC_H_ |
7 #pragma once | |
8 | 7 |
9 #include "base/file_path.h" | 8 #include "base/file_path.h" |
10 #include "chrome/browser/bookmarks/bookmark_node_data.h" | 9 #include "chrome/browser/bookmarks/bookmark_node_data.h" |
11 #include "ui/gfx/native_widget_types.h" | 10 #include "ui/gfx/native_widget_types.h" |
12 | 11 |
13 #if defined(__OBJC__) | 12 #if defined(__OBJC__) |
14 @class NSImage; | 13 @class NSImage; |
15 @class NSString; | 14 @class NSString; |
16 #else // __OBJC__ | 15 #else // __OBJC__ |
17 class NSImage; | 16 class NSImage; |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 | 50 |
52 } // namespace bookmark_pasteboard_helper_mac | 51 } // namespace bookmark_pasteboard_helper_mac |
53 | 52 |
54 #if defined(__OBJC__) | 53 #if defined(__OBJC__) |
55 // Pasteboard type for dictionary containing bookmark structure consisting | 54 // Pasteboard type for dictionary containing bookmark structure consisting |
56 // of individual bookmark nodes and/or bookmark folders. | 55 // of individual bookmark nodes and/or bookmark folders. |
57 extern "C" NSString* const kBookmarkDictionaryListPboardType; | 56 extern "C" NSString* const kBookmarkDictionaryListPboardType; |
58 #endif // __OBJC__ | 57 #endif // __OBJC__ |
59 | 58 |
60 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_PASTEBOARD_HELPER_MAC_H_ | 59 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_PASTEBOARD_HELPER_MAC_H_ |
OLD | NEW |