-
Notifications
You must be signed in to change notification settings - Fork 161
The great migration to dom
#588
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 15 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
f844b97
Migrate intl to dom
armanbilge f9f283f
Disable deprecation warnings for Scala 2.11
armanbilge 976dd12
Revert "Disable deprecation warnings for Scala 2.11"
armanbilge 44e6292
Disable fatal warnings in 2.11 instead
armanbilge 3e4960b
Migrate mediastream to dom
armanbilge ebb963d
Migrate webrtc to dom
armanbilge c670d81
Migrate sharedworkers to dom
armanbilge 6b118bd
Migrate serviceworkers to dom
armanbilge 24234ca
Migrate push to dom
armanbilge 558ea0a
Migrate crypto to dom
armanbilge 4277b18
Keep intl scoped in its own package
armanbilge 59cd8f2
Migrate webgl to dom
armanbilge 7b9fc3c
Migrate permissions to dom
armanbilge 8ae594b
Make crypto object behave like JSGlobal, h/t @sjrd
armanbilge b216a7d
Make crypto a package object again
armanbilge 0639628
Update src/main/scala/org/scalajs/dom/crypto/package.scala
armanbilge 2b9e0bd
prePR
armanbilge 59b5c0e
Split permissions to Java-style files
armanbilge 7f27f6c
Make implicit's underlying value private
armanbilge caf9985
Address reviews, fix constants
armanbilge 34a41b8
Fix TextTrackList method signatures
armanbilge ab1dec6
Fix AudioTrackList signatures
armanbilge File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 1 addition & 3 deletions
4
...org/scalajs/dom/crypto/AesCbcParams.scala → .../scala/org/scalajs/dom/AesCbcParams.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
package org.scalajs.dom.crypto | ||
|
||
import org.scalajs.dom.BufferSource | ||
package org.scalajs.dom | ||
|
||
// AES-CBC | ||
|
||
|
4 changes: 1 addition & 3 deletions
4
...org/scalajs/dom/crypto/AesCfbParams.scala → .../scala/org/scalajs/dom/AesCfbParams.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
package org.scalajs.dom.crypto | ||
|
||
import org.scalajs.dom.BufferSource | ||
package org.scalajs.dom | ||
|
||
// AES-CFB | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...rg/scalajs/dom/crypto/AesCmacParams.scala → ...scala/org/scalajs/dom/AesCmacParams.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package org.scalajs.dom.crypto | ||
package org.scalajs.dom | ||
|
||
// AES-CMAC | ||
|
||
|
4 changes: 1 addition & 3 deletions
4
...org/scalajs/dom/crypto/AesCtrParams.scala → .../scala/org/scalajs/dom/AesCtrParams.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
package org.scalajs.dom.crypto | ||
|
||
import org.scalajs.dom.BufferSource | ||
package org.scalajs.dom | ||
|
||
// AES-CTR | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...lajs/dom/crypto/AesDerivedKeyParams.scala → ...org/scalajs/dom/AesDerivedKeyParams.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 1 addition & 3 deletions
4
...org/scalajs/dom/crypto/AesGcmParams.scala → .../scala/org/scalajs/dom/AesGcmParams.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
package org.scalajs.dom.crypto | ||
|
||
import org.scalajs.dom.BufferSource | ||
package org.scalajs.dom | ||
|
||
// AES-GCM | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
.../scalajs/dom/crypto/AesKeyAlgorithm.scala → ...ala/org/scalajs/dom/AesKeyAlgorithm.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../scalajs/dom/crypto/AesKeyGenParams.scala → ...ala/org/scalajs/dom/AesKeyGenParams.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...la/org/scalajs/dom/crypto/Algorithm.scala → ...ain/scala/org/scalajs/dom/Algorithm.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package org.scalajs.dom.crypto | ||
package org.scalajs.dom | ||
|
||
import scala.scalajs.js | ||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...rimental/serviceworkers/CanvasProxy.scala → ...n/scala/org/scalajs/dom/CanvasProxy.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../experimental/serviceworkers/Client.scala → src/main/scala/org/scalajs/dom/Client.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package org.scalajs.dom.experimental.serviceworkers | ||
package org.scalajs.dom | ||
|
||
import scala.scalajs.js | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...l/serviceworkers/ClientQueryOptions.scala → .../org/scalajs/dom/ClientQueryOptions.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package org.scalajs.dom.experimental.serviceworkers | ||
package org.scalajs.dom | ||
|
||
import scala.scalajs.js | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...erimental/serviceworkers/ClientType.scala → ...in/scala/org/scalajs/dom/ClientType.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package org.scalajs.dom.experimental.serviceworkers | ||
package org.scalajs.dom | ||
|
||
import scala.scalajs.js | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...experimental/serviceworkers/Clients.scala → src/main/scala/org/scalajs/dom/Clients.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package org.scalajs.dom.experimental.serviceworkers | ||
package org.scalajs.dom | ||
|
||
import scala.scalajs.js | ||
|
||
|
4 changes: 1 addition & 3 deletions
4
...org/scalajs/dom/crypto/ConcatParams.scala → .../scala/org/scalajs/dom/ConcatParams.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
package org.scalajs.dom.crypto | ||
|
||
import org.scalajs.dom.BufferSource | ||
package org.scalajs.dom | ||
|
||
// CONCAT | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...scala/org/scalajs/dom/crypto/Crypto.scala → src/main/scala/org/scalajs/dom/Crypto.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...la/org/scalajs/dom/crypto/CryptoKey.scala → ...ain/scala/org/scalajs/dom/CryptoKey.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...rg/scalajs/dom/crypto/CryptoKeyPair.scala → ...scala/org/scalajs/dom/CryptoKeyPair.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package org.scalajs.dom.crypto | ||
package org.scalajs.dom | ||
|
||
import scala.scalajs.js | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...calajs/dom/crypto/DhImportKeyParams.scala → ...a/org/scalajs/dom/DhImportKeyParams.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...g/scalajs/dom/crypto/DhKeyAlgorithm.scala → ...cala/org/scalajs/dom/DhKeyAlgorithm.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...calajs/dom/crypto/DhKeyDeriveParams.scala → ...a/org/scalajs/dom/DhKeyDeriveParams.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...g/scalajs/dom/crypto/DhKeyGenParams.scala → ...cala/org/scalajs/dom/DhKeyGenParams.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package org.scalajs.dom.crypto | ||
package org.scalajs.dom | ||
|
||
// Diffie-Hellman | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...g/scalajs/dom/crypto/EcKeyAlgorithm.scala → ...cala/org/scalajs/dom/EcKeyAlgorithm.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...g/scalajs/dom/crypto/EcKeyGenParams.scala → ...cala/org/scalajs/dom/EcKeyGenParams.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...calajs/dom/crypto/EcKeyImportParams.scala → ...a/org/scalajs/dom/EcKeyImportParams.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...lajs/dom/crypto/EcdhKeyDeriveParams.scala → ...org/scalajs/dom/EcdhKeyDeriveParams.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package org.scalajs.dom.crypto | ||
package org.scalajs.dom | ||
|
||
// ECDH | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
.../org/scalajs/dom/crypto/EcdsaParams.scala → ...n/scala/org/scalajs/dom/EcdsaParams.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package org.scalajs.dom.crypto | ||
package org.scalajs.dom | ||
|
||
// ECDSA | ||
|
||
|
3 changes: 1 addition & 2 deletions
3
...ntal/serviceworkers/ExtendableEvent.scala → ...ala/org/scalajs/dom/ExtendableEvent.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
package org.scalajs.dom | ||
|
||
trait ExtendableEventInit extends EventInit {} |
3 changes: 1 addition & 2 deletions
3
...rviceworkers/ExtendableMessageEvent.scala → .../scalajs/dom/ExtendableMessageEvent.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletions
3
...eworkers/ExtendableMessageEventInit.scala → ...lajs/dom/ExtendableMessageEventInit.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletions
3
...erimental/serviceworkers/FetchEvent.scala → ...in/scala/org/scalajs/dom/FetchEvent.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletions
3
...ental/serviceworkers/FetchEventInit.scala → ...cala/org/scalajs/dom/FetchEventInit.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...perimental/serviceworkers/FrameType.scala → ...ain/scala/org/scalajs/dom/FrameType.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package org.scalajs.dom.experimental.serviceworkers | ||
package org.scalajs.dom | ||
|
||
import scala.scalajs.js | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...rviceworkers/GetNotificationOptions.scala → .../scalajs/dom/GetNotificationOptions.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package org.scalajs.dom.experimental.serviceworkers | ||
package org.scalajs.dom | ||
|
||
import scala.scalajs.js | ||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...rg/scalajs/dom/crypto/HashAlgorithm.scala → ...scala/org/scalajs/dom/HashAlgorithm.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 1 addition & 3 deletions
4
...rg/scalajs/dom/crypto/HkdfCtrParams.scala → ...scala/org/scalajs/dom/HkdfCtrParams.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
package org.scalajs.dom.crypto | ||
|
||
import org.scalajs.dom.BufferSource | ||
package org.scalajs.dom | ||
|
||
// HKDF-CTR | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...scalajs/dom/crypto/HmacImportParams.scala → ...la/org/scalajs/dom/HmacImportParams.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package org.scalajs.dom.crypto | ||
package org.scalajs.dom | ||
|
||
// AES-KW | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...scalajs/dom/crypto/HmacKeyAlgorithm.scala → ...la/org/scalajs/dom/HmacKeyAlgorithm.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...scalajs/dom/crypto/HmacKeyGenParams.scala → ...la/org/scalajs/dom/HmacKeyGenParams.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletions
3
...perimental/mediastream/ImageCapture.scala → .../scala/org/scalajs/dom/ImageCapture.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...a/org/scalajs/dom/crypto/JsonWebKey.scala → ...in/scala/org/scalajs/dom/JsonWebKey.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package org.scalajs.dom.crypto | ||
package org.scalajs.dom | ||
|
||
import scala.scalajs.js | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...org/scalajs/dom/crypto/KeyAlgorithm.scala → .../scala/org/scalajs/dom/KeyAlgorithm.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...la/org/scalajs/dom/crypto/KeyFormat.scala → ...ain/scala/org/scalajs/dom/KeyFormat.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package org.scalajs.dom.crypto | ||
package org.scalajs.dom | ||
|
||
import scala.scalajs.js | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...cala/org/scalajs/dom/crypto/KeyType.scala → src/main/scala/org/scalajs/dom/KeyType.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package org.scalajs.dom.crypto | ||
package org.scalajs.dom | ||
|
||
import scala.scalajs.js | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ala/org/scalajs/dom/crypto/KeyUsage.scala → ...main/scala/org/scalajs/dom/KeyUsage.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package org.scalajs.dom.crypto | ||
package org.scalajs.dom | ||
|
||
import scala.scalajs.js | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...imental/mediastream/MediaDeviceInfo.scala → ...ala/org/scalajs/dom/MediaDeviceInfo.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...imental/mediastream/MediaDeviceKind.scala → ...ala/org/scalajs/dom/MediaDeviceKind.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletions
3
...perimental/mediastream/MediaDevices.scala → .../scala/org/scalajs/dom/MediaDevices.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletions
3
...xperimental/mediastream/MediaStream.scala → ...n/scala/org/scalajs/dom/MediaStream.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.