Index: Source/core/rendering/style/QuotesData.h |
diff --git a/Source/core/rendering/style/QuotesData.h b/Source/core/rendering/style/QuotesData.h |
index 5699f324553ed0f32835827f2505125ac7957222..620ab8b42fe2a6e0eefa32bc318a9f4c1a1b8411 100644 |
--- a/Source/core/rendering/style/QuotesData.h |
+++ b/Source/core/rendering/style/QuotesData.h |
@@ -32,15 +32,13 @@ namespace WebCore { |
class QuotesData : public RefCounted<QuotesData> { |
public: |
static PassRefPtr<QuotesData> create() { return adoptRef(new QuotesData()); } |
- static PassRefPtr<QuotesData> create(const String open, const String close); |
- static PassRefPtr<QuotesData> create(const String open1, const String close1, const String open2, const String close2); |
// FIXME: this should be an operator==. |
static bool equals(const QuotesData*, const QuotesData*); |
void addPair(const std::pair<String, String> quotePair); |
- const String getOpenQuote(int index) const; |
- const String getCloseQuote(int index) const; |
+ const String openQuote(int index) const; |
+ const String closeQuote(int index) const; |
private: |
QuotesData() { } |