Commit d13db68e authored by Bence Béky's avatar Bence Béky Committed by Commit Bot

Move net/spdy/PRESUBMIT to net/third_party/spdy/.

This is a follow-up CL to https://crrev.com/c/1028984.

Change-Id: I16edc81639f67b115761f1f6c5d5351dca2f2f11
Reviewed-on: https://chromium-review.googlesource.com/1054514Reviewed-by: default avatarRyan Hamilton <rch@chromium.org>
Commit-Queue: Bence Béky <bnc@chromium.org>
Cr-Commit-Position: refs/heads/master@{#557914}
parent 1b852fd8
...@@ -19,7 +19,7 @@ def CheckForbiddenRegex(change, forbidden_regex, message_type, message): ...@@ -19,7 +19,7 @@ def CheckForbiddenRegex(change, forbidden_regex, message_type, message):
def CheckChange(input_api, message_type): def CheckChange(input_api, message_type):
result = [] result = []
shared_source_files = re.compile("^net/spdy/(core|platform/api)/.*\.(h|cc)$") shared_source_files = re.compile("^net/third_party/spdy/(core|platform/api)/.*\.(h|cc)$")
change = [(affected_file.LocalPath(), affected_file.NewContents()) change = [(affected_file.LocalPath(), affected_file.NewContents())
for affected_file in input_api.AffectedTestableFiles() for affected_file in input_api.AffectedTestableFiles()
if shared_source_files.match(affected_file.LocalPath())] if shared_source_files.match(affected_file.LocalPath())]
...@@ -30,6 +30,7 @@ def CheckChange(input_api, message_type): ...@@ -30,6 +30,7 @@ def CheckChange(input_api, message_type):
"^#include <string>$", "^#include <string>$",
r"\bstd::string\b", r"\bstd::string\b",
r"^#include \"base/strings/string_piece.h\"$", r"^#include \"base/strings/string_piece.h\"$",
r"^#include \"net/base/hex_utils.h\"$",
r"\bbase::StringPiece\b", r"\bbase::StringPiece\b",
r"\bbase::StringPrintf\b", r"\bbase::StringPrintf\b",
r"\bbase::StringAppendF\b", r"\bbase::StringAppendF\b",
...@@ -38,14 +39,16 @@ def CheckChange(input_api, message_type): ...@@ -38,14 +39,16 @@ def CheckChange(input_api, message_type):
r"\bHexDump\b", r"\bHexDump\b",
] ]
messages = [ messages = [
"Include \"spdy/platform/api/spdy_export.h\" " "Include \"net/third_party/spdy/platform/api/spdy_export.h\" "
"instead of \"net/base/net_export.h\"", "instead of \"net/base/net_export.h\"",
"Use SPDY_EXPORT instead of NET_EXPORT", "Use SPDY_EXPORT instead of NET_EXPORT",
"Use SPDY_EXPORT_PRIVATE instead of NET_EXPORT_PRIVATE", "Use SPDY_EXPORT_PRIVATE instead of NET_EXPORT_PRIVATE",
"Include \"spdy/platform/api/spdy_string.h\" instead of <string>", "Include \"net/third_party/spdy/platform/api/spdy_string.h\" instead of <string>",
"Use SpdyString instead of std::string", "Use SpdyString instead of std::string",
"Include \"spdy/platform/api/spdy_string_piece.h\" " "Include \"net/third_party/spdy/platform/api/spdy_string_piece.h\" "
"instead of \"base/strings/string_piece.h\"", "instead of \"base/strings/string_piece.h\"",
"Include \"net/third_party/spdy/platform/api/spdy_string_utils.h\" "
"instead of \"net/base/hex_utils.h\"",
"Use SpdyStringPiece instead of base::StringPiece", "Use SpdyStringPiece instead of base::StringPiece",
"Use SpdyStringPrintf instead of base::StringPrintf", "Use SpdyStringPrintf instead of base::StringPrintf",
"Use SpdyStringAppendF instead of base::StringAppendF", "Use SpdyStringAppendF instead of base::StringAppendF",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment