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

Unified Diff: Source/core/testing/InternalSettings.h

Issue 99623012: Make calls to AtomicString(const String&) explicit in testing/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 12 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 | « no previous file | Source/core/testing/InternalSettings.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/testing/InternalSettings.h
diff --git a/Source/core/testing/InternalSettings.h b/Source/core/testing/InternalSettings.h
index cc064baa413be3ef6432f977862750ff77d39ac1..403df97273f0a782018e377f995350e5c81e9ab2 100644
--- a/Source/core/testing/InternalSettings.h
+++ b/Source/core/testing/InternalSettings.h
@@ -81,13 +81,13 @@ public:
virtual ~InternalSettings();
void resetToConsistentState();
- void setStandardFontFamily(const String& family, const String& script, ExceptionState&);
- void setSerifFontFamily(const String& family, const String& script, ExceptionState&);
- void setSansSerifFontFamily(const String& family, const String& script, ExceptionState&);
- void setFixedFontFamily(const String& family, const String& script, ExceptionState&);
- void setCursiveFontFamily(const String& family, const String& script, ExceptionState&);
- void setFantasyFontFamily(const String& family, const String& script, ExceptionState&);
- void setPictographFontFamily(const String& family, const String& script, ExceptionState&);
+ void setStandardFontFamily(const AtomicString& family, const String& script, ExceptionState&);
+ void setSerifFontFamily(const AtomicString& family, const String& script, ExceptionState&);
+ void setSansSerifFontFamily(const AtomicString& family, const String& script, ExceptionState&);
+ void setFixedFontFamily(const AtomicString& family, const String& script, ExceptionState&);
+ void setCursiveFontFamily(const AtomicString& family, const String& script, ExceptionState&);
+ void setFantasyFontFamily(const AtomicString& family, const String& script, ExceptionState&);
+ void setPictographFontFamily(const AtomicString& family, const String& script, ExceptionState&);
void setDefaultVideoPosterURL(const String& url, ExceptionState&);
void setEditingBehavior(const String&, ExceptionState&);
« no previous file with comments | « no previous file | Source/core/testing/InternalSettings.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698