mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 06:16:30 +03:00
url: Remove perfetto tracing
This commit is contained in:
parent
e10a35c83d
commit
9ec1a5e8d9
@ -16,7 +16,6 @@
|
|||||||
#include "base/strings/string_piece.h"
|
#include "base/strings/string_piece.h"
|
||||||
#include "base/strings/string_util.h"
|
#include "base/strings/string_util.h"
|
||||||
#include "base/trace_event/memory_usage_estimator.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_canon_stdstring.h"
|
||||||
#include "url/url_util.h"
|
#include "url/url_util.h"
|
||||||
|
|
||||||
@ -512,10 +511,6 @@ bool GURL::IsAboutPath(base::StringPiece actual_path,
|
|||||||
return false;
|
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) {
|
std::ostream& operator<<(std::ostream& out, const GURL& url) {
|
||||||
return out << url.possibly_invalid_spec();
|
return out << url.possibly_invalid_spec();
|
||||||
}
|
}
|
||||||
|
@ -14,7 +14,6 @@
|
|||||||
#include "base/component_export.h"
|
#include "base/component_export.h"
|
||||||
#include "base/debug/alias.h"
|
#include "base/debug/alias.h"
|
||||||
#include "base/strings/string_piece.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/third_party/mozilla/url_parse.h"
|
||||||
#include "url/url_canon.h"
|
#include "url/url_canon.h"
|
||||||
#include "url/url_canon_stdstring.h"
|
#include "url/url_canon_stdstring.h"
|
||||||
@ -443,8 +442,6 @@ class COMPONENT_EXPORT(URL) GURL {
|
|||||||
static bool IsAboutPath(base::StringPiece actual_path,
|
static bool IsAboutPath(base::StringPiece actual_path,
|
||||||
base::StringPiece allowed_path);
|
base::StringPiece allowed_path);
|
||||||
|
|
||||||
void WriteIntoTrace(perfetto::TracedValue context) const;
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// Variant of the string parsing constructor that allows the caller to elect
|
// 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
|
// retain trailing whitespace, if any, on the passed URL spec, but only if
|
||||||
|
@ -19,7 +19,6 @@
|
|||||||
#include "base/strings/string_number_conversions.h"
|
#include "base/strings/string_number_conversions.h"
|
||||||
#include "base/strings/string_piece.h"
|
#include "base/strings/string_piece.h"
|
||||||
#include "base/strings/string_util.h"
|
#include "base/strings/string_util.h"
|
||||||
#include "third_party/perfetto/include/perfetto/tracing/traced_value.h"
|
|
||||||
#include "url/gurl.h"
|
#include "url/gurl.h"
|
||||||
#include "url/url_canon.h"
|
#include "url/url_canon.h"
|
||||||
#include "url/url_canon_stdstring.h"
|
#include "url/url_canon_stdstring.h"
|
||||||
@ -389,10 +388,6 @@ absl::optional<Origin> Origin::Deserialize(const std::string& value) {
|
|||||||
return origin;
|
return origin;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Origin::WriteIntoTrace(perfetto::TracedValue context) const {
|
|
||||||
std::move(context).WriteString(GetDebugString());
|
|
||||||
}
|
|
||||||
|
|
||||||
std::ostream& operator<<(std::ostream& out, const url::Origin& origin) {
|
std::ostream& operator<<(std::ostream& out, const url::Origin& origin) {
|
||||||
out << origin.GetDebugString();
|
out << origin.GetDebugString();
|
||||||
return out;
|
return out;
|
||||||
|
@ -19,7 +19,6 @@
|
|||||||
#include "build/build_config.h"
|
#include "build/build_config.h"
|
||||||
#include "ipc/ipc_param_traits.h"
|
#include "ipc/ipc_param_traits.h"
|
||||||
#include "third_party/abseil-cpp/absl/types/optional.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"
|
#include "url/scheme_host_port.h"
|
||||||
#include "url/third_party/mozilla/url_parse.h"
|
#include "url/third_party/mozilla/url_parse.h"
|
||||||
#include "url/url_canon.h"
|
#include "url/url_canon.h"
|
||||||
@ -304,8 +303,6 @@ class COMPONENT_EXPORT(URL) Origin {
|
|||||||
const base::android::JavaRef<jobject>& java_origin);
|
const base::android::JavaRef<jobject>& java_origin);
|
||||||
#endif // BUILDFLAG(IS_ANDROID)
|
#endif // BUILDFLAG(IS_ANDROID)
|
||||||
|
|
||||||
void WriteIntoTrace(perfetto::TracedValue context) const;
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
friend class blink::SecurityOrigin;
|
friend class blink::SecurityOrigin;
|
||||||
// SchemefulSite needs access to the serialization/deserialization logic which
|
// SchemefulSite needs access to the serialization/deserialization logic which
|
||||||
|
Loading…
Reference in New Issue
Block a user