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

Side by Side Diff: public/web/WebRuntimeFeatures.h

Issue 20598008: Add maxTouchPoints for pointer events (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: maxTouchPoints the right way Created 7 years, 2 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
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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 123
124 BLINK_EXPORT static void enableSpeechInput(bool); 124 BLINK_EXPORT static void enableSpeechInput(bool);
125 BLINK_EXPORT static bool isSpeechInputEnabled(); 125 BLINK_EXPORT static bool isSpeechInputEnabled();
126 126
127 BLINK_EXPORT static void enableSpeechSynthesis(bool); 127 BLINK_EXPORT static void enableSpeechSynthesis(bool);
128 BLINK_EXPORT static bool isSpeechSynthesisEnabled(); 128 BLINK_EXPORT static bool isSpeechSynthesisEnabled();
129 129
130 BLINK_EXPORT static void enableTouch(bool); 130 BLINK_EXPORT static void enableTouch(bool);
131 BLINK_EXPORT static bool isTouchEnabled(); 131 BLINK_EXPORT static bool isTouchEnabled();
132 132
133 BLINK_EXPORT static void enablePointerEventsMaxTouchPoints(bool);
134 BLINK_EXPORT static bool isPointerEventsMaxTouchPointsEnabled();
135
133 BLINK_EXPORT static void enableWebAnimationsCSS(); 136 BLINK_EXPORT static void enableWebAnimationsCSS();
134 BLINK_EXPORT static void enableWebAnimationsSVG(); 137 BLINK_EXPORT static void enableWebAnimationsSVG();
135 138
136 BLINK_EXPORT static void enableWebAudio(bool); 139 BLINK_EXPORT static void enableWebAudio(bool);
137 BLINK_EXPORT static bool isWebAudioEnabled(); 140 BLINK_EXPORT static bool isWebAudioEnabled();
138 141
139 BLINK_EXPORT static void enableWebGLDraftExtensions(bool); 142 BLINK_EXPORT static void enableWebGLDraftExtensions(bool);
140 BLINK_EXPORT static bool isWebGLDraftExtensionsEnabled(); 143 BLINK_EXPORT static bool isWebGLDraftExtensionsEnabled();
141 144
142 BLINK_EXPORT static void enableWebMIDI(bool); 145 BLINK_EXPORT static void enableWebMIDI(bool);
(...skipping 15 matching lines...) Expand all
158 161
159 BLINK_EXPORT static void enableOverlayFullscreenVideo(bool); 162 BLINK_EXPORT static void enableOverlayFullscreenVideo(bool);
160 163
161 private: 164 private:
162 WebRuntimeFeatures(); 165 WebRuntimeFeatures();
163 }; 166 };
164 167
165 } // namespace WebKit 168 } // namespace WebKit
166 169
167 #endif 170 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698