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

Unified Diff: Source/core/rendering/style/QuotesData.h

Issue 15093007: Shrink RenderQuote.o by 134K (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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
« no previous file with comments | « Source/core/rendering/RenderQuote.cpp ('k') | Source/core/rendering/style/QuotesData.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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() { }
« no previous file with comments | « Source/core/rendering/RenderQuote.cpp ('k') | Source/core/rendering/style/QuotesData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698