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

Side by Side Diff: Source/WebKit/chromium/public/WebRuntimeFeatures.h

Issue 15796009: Parse SVG as HTML (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix compile issue (the tree moved). Ready for landing Created 7 years, 6 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
« no previous file with comments | « no previous file | Source/WebKit/chromium/src/WebRuntimeFeatures.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 147
148 WEBKIT_EXPORT static void enableMediaStream(bool); 148 WEBKIT_EXPORT static void enableMediaStream(bool);
149 WEBKIT_EXPORT static bool isMediaStreamEnabled(); 149 WEBKIT_EXPORT static bool isMediaStreamEnabled();
150 150
151 WEBKIT_EXPORT static void enableNotifications(bool); 151 WEBKIT_EXPORT static void enableNotifications(bool);
152 WEBKIT_EXPORT static bool isNotificationsEnabled(); 152 WEBKIT_EXPORT static bool isNotificationsEnabled();
153 153
154 WEBKIT_EXPORT static void enablePagePopup(bool); 154 WEBKIT_EXPORT static void enablePagePopup(bool);
155 WEBKIT_EXPORT static bool isPagePopupEnabled(); 155 WEBKIT_EXPORT static bool isPagePopupEnabled();
156 156
157 WEBKIT_EXPORT static void enableParseSVGAsHTML(bool);
158 WEBKIT_EXPORT static bool isParseSVGAsHTMLEnabled();
159
157 WEBKIT_EXPORT static void enablePeerConnection(bool); 160 WEBKIT_EXPORT static void enablePeerConnection(bool);
158 WEBKIT_EXPORT static bool isPeerConnectionEnabled(); 161 WEBKIT_EXPORT static bool isPeerConnectionEnabled();
159 162
160 WEBKIT_EXPORT static void enableQuota(bool); 163 WEBKIT_EXPORT static void enableQuota(bool);
161 WEBKIT_EXPORT static bool isQuotaEnabled(); 164 WEBKIT_EXPORT static bool isQuotaEnabled();
162 165
163 WEBKIT_EXPORT static void enableRequestAutocomplete(bool); 166 WEBKIT_EXPORT static void enableRequestAutocomplete(bool);
164 WEBKIT_EXPORT static bool isRequestAutocompleteEnabled(); 167 WEBKIT_EXPORT static bool isRequestAutocompleteEnabled();
165 168
166 WEBKIT_EXPORT static void enableScriptedSpeech(bool); 169 WEBKIT_EXPORT static void enableScriptedSpeech(bool);
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 WEBKIT_EXPORT static void enableDataListElement(bool); 202 WEBKIT_EXPORT static void enableDataListElement(bool);
200 WEBKIT_EXPORT static bool isDataListElementEnabled(); 203 WEBKIT_EXPORT static bool isDataListElementEnabled();
201 204
202 private: 205 private:
203 WebRuntimeFeatures(); 206 WebRuntimeFeatures();
204 }; 207 };
205 208
206 } // namespace WebKit 209 } // namespace WebKit
207 210
208 #endif 211 #endif
OLDNEW
« no previous file with comments | « no previous file | Source/WebKit/chromium/src/WebRuntimeFeatures.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698