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

Side by Side Diff: Tools/DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp

Issue 14192043: Web MIDI: implement MIDIMessageEvent (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: OWNERS Created 7 years, 8 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
« Source/modules/modules.gypi ('K') | « Source/modules/webmidi/OWNERS ('k') | no next file » | 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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 WebRuntimeFeatures::enableInputTypeDateTime(true); 65 WebRuntimeFeatures::enableInputTypeDateTime(true);
66 WebRuntimeFeatures::enableInputTypeWeek(true); 66 WebRuntimeFeatures::enableInputTypeWeek(true);
67 WebRuntimeFeatures::enableFileSystem(true); 67 WebRuntimeFeatures::enableFileSystem(true);
68 WebRuntimeFeatures::enableFontLoadEvents(true); 68 WebRuntimeFeatures::enableFontLoadEvents(true);
69 WebRuntimeFeatures::enableJavaScriptI18NAPI(true); 69 WebRuntimeFeatures::enableJavaScriptI18NAPI(true);
70 WebRuntimeFeatures::enableMediaSource(true); 70 WebRuntimeFeatures::enableMediaSource(true);
71 WebRuntimeFeatures::enableEncryptedMedia(true); 71 WebRuntimeFeatures::enableEncryptedMedia(true);
72 WebRuntimeFeatures::enableMediaStream(true); 72 WebRuntimeFeatures::enableMediaStream(true);
73 WebRuntimeFeatures::enablePeerConnection(true); 73 WebRuntimeFeatures::enablePeerConnection(true);
74 WebRuntimeFeatures::enableWebAudio(true); 74 WebRuntimeFeatures::enableWebAudio(true);
75 WebRuntimeFeatures::enableWebMIDI(true);
75 WebRuntimeFeatures::enableVideoTrack(true); 76 WebRuntimeFeatures::enableVideoTrack(true);
76 WebRuntimeFeatures::enableGamepad(true); 77 WebRuntimeFeatures::enableGamepad(true);
77 WebRuntimeFeatures::enableShadowDOM(true); 78 WebRuntimeFeatures::enableShadowDOM(true);
78 WebRuntimeFeatures::enableCustomDOMElements(true); 79 WebRuntimeFeatures::enableCustomDOMElements(true);
79 WebRuntimeFeatures::enableStyleScoped(true); 80 WebRuntimeFeatures::enableStyleScoped(true);
80 WebRuntimeFeatures::enableScriptedSpeech(true); 81 WebRuntimeFeatures::enableScriptedSpeech(true);
81 WebRuntimeFeatures::enableRequestAutocomplete(true); 82 WebRuntimeFeatures::enableRequestAutocomplete(true);
82 WebRuntimeFeatures::enableExperimentalContentSecurityPolicyFeatures(true); 83 WebRuntimeFeatures::enableExperimentalContentSecurityPolicyFeatures(true);
83 WebRuntimeFeatures::enableSeamlessIFrames(true); 84 WebRuntimeFeatures::enableSeamlessIFrames(true);
84 WebRuntimeFeatures::enableCanvasPath(true); 85 WebRuntimeFeatures::enableCanvasPath(true);
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 m_themeEngine.reset(new WebTestThemeEngineWin()); 221 m_themeEngine.reset(new WebTestThemeEngineWin());
221 return m_themeEngine.get(); 222 return m_themeEngine.get();
222 #elif defined(__APPLE__) 223 #elif defined(__APPLE__)
223 if (!m_themeEngine.get()) 224 if (!m_themeEngine.get())
224 m_themeEngine.reset(new WebTestThemeEngineMac()); 225 m_themeEngine.reset(new WebTestThemeEngineMac());
225 return m_themeEngine.get(); 226 return m_themeEngine.get();
226 #endif 227 #endif
227 } 228 }
228 229
229 } 230 }
OLDNEW
« Source/modules/modules.gypi ('K') | « Source/modules/webmidi/OWNERS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698