Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Unified Diff: third_party/mozilla/NSPasteboard+Utils.h

Issue 2014733003: Removing parsing of text from pasteboard. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: splitting calls in two variations, to discass Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/mozilla/NSPasteboard+Utils.h
diff --git a/third_party/mozilla/NSPasteboard+Utils.h b/third_party/mozilla/NSPasteboard+Utils.h
index 58f0d66ba71f9fa64b18fa81f95b5f9b92732a8f..bb41c9a98b7285006ac0e3a652ceeca6dcac4fd6 100644
--- a/third_party/mozilla/NSPasteboard+Utils.h
+++ b/third_party/mozilla/NSPasteboard+Utils.h
@@ -53,10 +53,16 @@ MOZILLA_EXPORT extern NSString* const kWebURLsWithTitlesPboardType;
- (void) setDataForURL:(NSString*)url title:(NSString*)title;
- (void) setURLs:(NSArray*)inUrls withTitles:(NSArray*)inTitles;
-- (void) getURLs:(NSArray**)outUrls
- andTitles:(NSArray**)outTitles
+
+- (void)getURLsFromType:(NSArray**)outUrls
+ andTitles:(NSArray**)outTitles
convertingFilenames:(BOOL)convertFilenames;
-- (BOOL) containsURLData;
+- (void)getURLsFromTypeOrText:(NSArray**)outUrls
+ andTitles:(NSArray**)outTitles
+ convertingFilenames:(BOOL)convertFilenames;
+
+- (BOOL) containsURLDataInType;
+- (BOOL) containsURLDataInTypeOrText;
@end

Powered by Google App Engine
This is Rietveld 408576698