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

Side by Side Diff: Source/WTF/wtf/text/StringImpl.h

Issue 13687007: Remove PLATFORM(BLACKBERRY) support. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights reserved.
4 * Copyright (C) 2009 Google Inc. All rights reserved. 4 * Copyright (C) 2009 Google Inc. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 25 matching lines...) Expand all
36 #endif 36 #endif
37 37
38 #if USE(CF) 38 #if USE(CF)
39 typedef const struct __CFString * CFStringRef; 39 typedef const struct __CFString * CFStringRef;
40 #endif 40 #endif
41 41
42 #ifdef __OBJC__ 42 #ifdef __OBJC__
43 @class NSString; 43 @class NSString;
44 #endif 44 #endif
45 45
46 #if PLATFORM(BLACKBERRY)
47 #include <BlackBerryPlatformString.h>
48 #endif
49
50 // FIXME: This is a temporary layering violation while we move string code to WT F. 46 // FIXME: This is a temporary layering violation while we move string code to WT F.
51 // Landing the file moves in one patch, will follow on with patches to change th e namespaces. 47 // Landing the file moves in one patch, will follow on with patches to change th e namespaces.
52 namespace JSC { 48 namespace JSC {
53 struct IdentifierASCIIStringTranslator; 49 struct IdentifierASCIIStringTranslator;
54 namespace LLInt { class Data; } 50 namespace LLInt { class Data; }
55 class LLIntOffsetsExtractor; 51 class LLIntOffsetsExtractor;
56 template <typename T> struct IdentifierCharBufferTranslator; 52 template <typename T> struct IdentifierCharBufferTranslator;
57 struct IdentifierLCharFromUCharTranslator; 53 struct IdentifierLCharFromUCharTranslator;
58 } 54 }
59 55
(...skipping 1278 matching lines...) Expand 10 before | Expand all | Expand 10 after
1338 } 1334 }
1339 1335
1340 using WTF::StringImpl; 1336 using WTF::StringImpl;
1341 using WTF::equal; 1337 using WTF::equal;
1342 using WTF::equalNonNull; 1338 using WTF::equalNonNull;
1343 using WTF::TextCaseSensitivity; 1339 using WTF::TextCaseSensitivity;
1344 using WTF::TextCaseSensitive; 1340 using WTF::TextCaseSensitive;
1345 using WTF::TextCaseInsensitive; 1341 using WTF::TextCaseInsensitive;
1346 1342
1347 #endif 1343 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698