-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prototype migrating old localStorage and cookies from StorageRecord.
b/362296377
- Loading branch information
1 parent
6c07cf6
commit 43a0740
Showing
8 changed files
with
493 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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,27 @@ | ||
import("//testing/test.gni") | ||
import("//third_party/protobuf/proto_library.gni") | ||
|
||
proto_library("storage_proto") { | ||
sources = [ "storage.proto" ] | ||
generate_python = false | ||
} | ||
|
||
source_set("migrate_storage_record") { | ||
# Needed to depend on |//content/shell:content_shell_lib|. | ||
testonly = true | ||
|
||
sources = [ | ||
"migrate.cc", | ||
"migrate.h", | ||
] | ||
deps = [ | ||
":storage_proto", | ||
"//base", | ||
"//content/shell:content_shell_lib", | ||
"//net", | ||
"//services/network/public/mojom:cookies_mojom", | ||
"//starboard/common", | ||
"//url", | ||
] | ||
public_deps = [ "//skia" ] | ||
} |
Oops, something went wrong.