summaryrefslogtreecommitdiff
path: root/chromium/content/browser/web_package/signed_exchange_utils.cc
blob: 5fa03263441ba897b83a7959a1492dafe13496fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/browser/web_package/signed_exchange_utils.h"

#include "base/callback.h"
#include "base/trace_event/trace_event.h"

namespace content {
namespace signed_exchange_utils {

void RunErrorMessageCallbackAndEndTraceEvent(const char* name,
                                             const LogCallback& callback,
                                             const std::string& error_message) {
  if (callback)
    callback.Run(error_message);

  TRACE_EVENT_END1(TRACE_DISABLED_BY_DEFAULT("loading"), name, "error",
                   error_message);
}

}  // namespace signed_exchange_utils
}  // namespace content