Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 99 BLINK_EXPORT static void enableNetworkInformation(bool); | 99 BLINK_EXPORT static void enableNetworkInformation(bool); |
| 100 | 100 |
| 101 BLINK_EXPORT static void enableOrientationEvent(bool); | 101 BLINK_EXPORT static void enableOrientationEvent(bool); |
| 102 | 102 |
| 103 BLINK_EXPORT static void enablePagePopup(bool); | 103 BLINK_EXPORT static void enablePagePopup(bool); |
| 104 | 104 |
| 105 BLINK_EXPORT static void enablePermissionsAPI(bool); | 105 BLINK_EXPORT static void enablePermissionsAPI(bool); |
| 106 | 106 |
| 107 BLINK_EXPORT static void enableRequestAutocomplete(bool); | 107 BLINK_EXPORT static void enableRequestAutocomplete(bool); |
| 108 | 108 |
| 109 BLINK_EXPORT static void RequestIdleCallback(bool); | |
|
jochen (gone - plz use gerrit)
2015/07/31 09:19:19
why do you need this?
should also be called enabl
rmcilroy
2015/08/11 16:30:52
Removed.
| |
| 110 | |
| 109 BLINK_EXPORT static void enableScreenOrientation(bool); | 111 BLINK_EXPORT static void enableScreenOrientation(bool); |
| 110 | 112 |
| 111 BLINK_EXPORT static void enableScriptedSpeech(bool); | 113 BLINK_EXPORT static void enableScriptedSpeech(bool); |
| 112 | 114 |
| 113 BLINK_EXPORT static void enableSlimmingPaint(bool); | 115 BLINK_EXPORT static void enableSlimmingPaint(bool); |
| 114 | 116 |
| 115 BLINK_EXPORT static void enableTouch(bool); | 117 BLINK_EXPORT static void enableTouch(bool); |
| 116 | 118 |
| 117 BLINK_EXPORT static void enableTouchIconLoading(bool); | 119 BLINK_EXPORT static void enableTouchIconLoading(bool); |
| 118 | 120 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 159 BLINK_EXPORT static void enableUnsafeES3APIs(bool); | 161 BLINK_EXPORT static void enableUnsafeES3APIs(bool); |
| 160 | 162 |
| 161 BLINK_EXPORT static void enableWebVR(bool); | 163 BLINK_EXPORT static void enableWebVR(bool); |
| 162 private: | 164 private: |
| 163 WebRuntimeFeatures(); | 165 WebRuntimeFeatures(); |
| 164 }; | 166 }; |
| 165 | 167 |
| 166 } // namespace blink | 168 } // namespace blink |
| 167 | 169 |
| 168 #endif | 170 #endif |
| OLD | NEW |