From bb87faf332ce45492d44c23b8b08b19b1099bb3a Mon Sep 17 00:00:00 2001
From: klzgrad <kizdiv@gmail.com>
Date: Sat, 24 Apr 2021 08:18:21 +0800
Subject: [PATCH] url: Remove perfetto tracing

---
 src/url/gurl.cc   | 5 -----
 src/url/gurl.h    | 3 ---
 src/url/origin.cc | 5 -----
 src/url/origin.h  | 3 ---
 4 files changed, 16 deletions(-)

diff --git a/src/url/gurl.cc b/src/url/gurl.cc
index e01364690e..1b26a45d85 100644
--- a/src/url/gurl.cc
+++ b/src/url/gurl.cc
@@ -16,7 +16,6 @@
 #include "base/strings/string_piece.h"
 #include "base/strings/string_util.h"
 #include "base/trace_event/memory_usage_estimator.h"
-#include "third_party/perfetto/include/perfetto/tracing/traced_value.h"
 #include "url/url_canon_stdstring.h"
 #include "url/url_util.h"
 
@@ -521,10 +520,6 @@ bool GURL::IsAboutPath(base::StringPiece actual_path,
   return false;
 }
 
-void GURL::WriteIntoTrace(perfetto::TracedValue context) const {
-  std::move(context).WriteString(possibly_invalid_spec());
-}
-
 std::ostream& operator<<(std::ostream& out, const GURL& url) {
   return out << url.possibly_invalid_spec();
 }
diff --git a/src/url/gurl.h b/src/url/gurl.h
index 58ffecf181..40357bbe99 100644
--- a/src/url/gurl.h
+++ b/src/url/gurl.h
@@ -15,7 +15,6 @@
 #include "base/debug/alias.h"
 #include "base/debug/crash_logging.h"
 #include "base/strings/string_piece.h"
-#include "third_party/perfetto/include/perfetto/tracing/traced_value_forward.h"
 #include "url/third_party/mozilla/url_parse.h"
 #include "url/url_canon.h"
 #include "url/url_canon_stdstring.h"
@@ -449,8 +448,6 @@ class COMPONENT_EXPORT(URL) GURL {
   static bool IsAboutPath(base::StringPiece actual_path,
                           base::StringPiece allowed_path);
 
-  void WriteIntoTrace(perfetto::TracedValue context) const;
-
  private:
   // Variant of the string parsing constructor that allows the caller to elect
   // retain trailing whitespace, if any, on the passed URL spec, but only if
diff --git a/src/url/origin.cc b/src/url/origin.cc
index 667576a566..b2adf8cc4d 100644
--- a/src/url/origin.cc
+++ b/src/url/origin.cc
@@ -22,7 +22,6 @@
 #include "base/strings/strcat.h"
 #include "base/strings/string_piece.h"
 #include "base/unguessable_token.h"
-#include "third_party/perfetto/include/perfetto/tracing/traced_value.h"
 #include "url/gurl.h"
 #include "url/scheme_host_port.h"
 #include "url/url_constants.h"
@@ -387,10 +386,6 @@ absl::optional<Origin> Origin::Deserialize(const std::string& value) {
   return origin;
 }
 
-void Origin::WriteIntoTrace(perfetto::TracedValue context) const {
-  std::move(context).WriteString(GetDebugString());
-}
-
 std::ostream& operator<<(std::ostream& out, const url::Origin& origin) {
   out << origin.GetDebugString();
   return out;
diff --git a/src/url/origin.h b/src/url/origin.h
index f5e5a4079c..d65407e071 100644
--- a/src/url/origin.h
+++ b/src/url/origin.h
@@ -20,7 +20,6 @@
 #include "build/buildflag.h"
 #include "ipc/ipc_param_traits.h"
 #include "third_party/abseil-cpp/absl/types/optional.h"
-#include "third_party/perfetto/include/perfetto/tracing/traced_value_forward.h"
 #include "url/scheme_host_port.h"
 
 #if BUILDFLAG(IS_ANDROID)
@@ -313,8 +312,6 @@ class COMPONENT_EXPORT(URL) Origin {
       const base::android::JavaRef<jobject>& java_origin);
 #endif  // BUILDFLAG(IS_ANDROID)
 
-  void WriteIntoTrace(perfetto::TracedValue context) const;
-
  private:
   friend class blink::SecurityOrigin;
   friend class blink::SecurityOriginTest;