Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
6fc99e98
Unverified
Commit
6fc99e98
authored
5 years ago
by
Jonah Williams
Committed by
GitHub
5 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rename headless server to web server (#42970)
parent
21be8372
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
web_device.dart
packages/flutter_tools/lib/src/web/web_device.dart
+2
-2
devices_test.dart
...es/flutter_tools/test/general.shard/web/devices_test.dart
+2
-2
No files found.
packages/flutter_tools/lib/src/web/web_device.dart
View file @
6fc99e98
...
...
@@ -190,7 +190,7 @@ String parseVersionForWindows(String input) {
/// A special device type to allow serving for arbitrary browsers.
class
WebServerDevice
extends
Device
{
WebServerDevice
()
:
super
(
'
headless
-server'
,
'
web
-server'
,
platformType:
PlatformType
.
web
,
category:
Category
.
web
,
ephemeral:
false
,
...
...
@@ -228,7 +228,7 @@ class WebServerDevice extends Device {
}
@override
String
get
name
=>
'
Headless
Server'
;
String
get
name
=>
'
Web
Server'
;
@override
DevicePortForwarder
get
portForwarder
=>
const
NoOpDevicePortForwarder
();
...
...
This diff is collapsed.
Click to expand it.
packages/flutter_tools/test/general.shard/web/devices_test.dart
View file @
6fc99e98
...
...
@@ -49,8 +49,8 @@ void main() {
test
(
'Server defaults'
,
()
async
{
final
WebServerDevice
device
=
WebServerDevice
();
expect
(
device
.
name
,
'
Headless
Server'
);
expect
(
device
.
id
,
'
headless
-server'
);
expect
(
device
.
name
,
'
Web
Server'
);
expect
(
device
.
id
,
'
web
-server'
);
expect
(
device
.
supportsHotReload
,
true
);
expect
(
device
.
supportsHotRestart
,
true
);
expect
(
device
.
supportsStartPaused
,
true
);
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment