tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

event_mac.cc (678B)


      1 // Copyright 2022 The Chromium Authors.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 #include "event_mac.h"
      6 
      7 #include "scoped_print_handle_mac.h"
      8 
      9 namespace content_analysis {
     10 namespace sdk {
     11 
     12 ContentAnalysisEventMac::ContentAnalysisEventMac(
     13    const BrowserInfo& browser_info,
     14    ContentAnalysisRequest req)
     15    : ContentAnalysisEventBase(browser_info) {
     16  *request() = std::move(req);
     17 }
     18 
     19 ResultCode ContentAnalysisEventMac::Send() {
     20  return ResultCode::ERR_UNEXPECTED;
     21 }
     22 
     23 std::string ContentAnalysisEventMac::DebugString() const {
     24  return std::string();
     25 }
     26 
     27 
     28 }  // namespace sdk
     29 }  // namespace content_analysis