| OLD | NEW |
| 1 /* ***** BEGIN LICENSE BLOCK ***** | 1 /* ***** BEGIN LICENSE BLOCK ***** |
| 2 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 | 2 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 |
| 3 * | 3 * |
| 4 * The contents of this file are subject to the Mozilla Public License Version | 4 * The contents of this file are subject to the Mozilla Public License Version |
| 5 * 1.1 (the "License"); you may not use this file except in compliance with | 5 * 1.1 (the "License"); you may not use this file except in compliance with |
| 6 * the License. You may obtain a copy of the License at | 6 * the License. You may obtain a copy of the License at |
| 7 * http://www.mozilla.org/MPL/ | 7 * http://www.mozilla.org/MPL/ |
| 8 * | 8 * |
| 9 * Software distributed under the License is distributed on an "AS IS" basis, | 9 * Software distributed under the License is distributed on an "AS IS" basis, |
| 10 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License | 10 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 | 46 |
| 47 MOZILLA_EXPORT extern NSString* const kCaminoBookmarkListPBoardType; | 47 MOZILLA_EXPORT extern NSString* const kCaminoBookmarkListPBoardType; |
| 48 MOZILLA_EXPORT extern NSString* const kWebURLsWithTitlesPboardType; | 48 MOZILLA_EXPORT extern NSString* const kWebURLsWithTitlesPboardType; |
| 49 | 49 |
| 50 @interface NSPasteboard(ChimeraPasteboardURLUtils) | 50 @interface NSPasteboard(ChimeraPasteboardURLUtils) |
| 51 | 51 |
| 52 - (int) declareURLPasteboardWithAdditionalTypes:(NSArray*)additionalTypes owner:
(id)newOwner; | 52 - (int) declareURLPasteboardWithAdditionalTypes:(NSArray*)additionalTypes owner:
(id)newOwner; |
| 53 - (void) setDataForURL:(NSString*)url title:(NSString*)title; | 53 - (void) setDataForURL:(NSString*)url title:(NSString*)title; |
| 54 | 54 |
| 55 - (void) setURLs:(NSArray*)inUrls withTitles:(NSArray*)inTitles; | 55 - (void) setURLs:(NSArray*)inUrls withTitles:(NSArray*)inTitles; |
| 56 - (void) getURLs:(NSArray**)outUrls | 56 |
| 57 andTitles:(NSArray**)outTitles | 57 - (void)getURLsFromType:(NSArray**)outUrls |
| 58 andTitles:(NSArray**)outTitles |
| 58 convertingFilenames:(BOOL)convertFilenames; | 59 convertingFilenames:(BOOL)convertFilenames; |
| 59 - (BOOL) containsURLData; | 60 - (void)getURLsFromTypeOrText:(NSArray**)outUrls |
| 61 andTitles:(NSArray**)outTitles |
| 62 convertingFilenames:(BOOL)convertFilenames; |
| 63 |
| 64 - (BOOL) containsURLDataInType; |
| 65 - (BOOL) containsURLDataInTypeOrText; |
| 60 | 66 |
| 61 @end | 67 @end |
| 62 | 68 |
| 63 @interface NSPasteboard(ChromiumHTMLUtils) | 69 @interface NSPasteboard(ChromiumHTMLUtils) |
| 64 | 70 |
| 65 // Returns the HTML converted from RTF data on the pasteboard. If there is | 71 // Returns the HTML converted from RTF data on the pasteboard. If there is |
| 66 // none, returns an empty string. | 72 // none, returns an empty string. |
| 67 - (NSString*)htmlFromRtf; | 73 - (NSString*)htmlFromRtf; |
| 68 | 74 |
| 69 @end | 75 @end |
| OLD | NEW |