1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37

ash / assistant / test / test_assistant_setup.cc [blame]

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ash/assistant/test/test_assistant_setup.h"

namespace ash {

TestAssistantSetup::TestAssistantSetup() = default;

TestAssistantSetup::~TestAssistantSetup() = default;

void TestAssistantSetup::StartAssistantOptInFlow(
    FlowType type,
    StartAssistantOptInFlowCallback callback) {
  if (callback_) {
    // If opt-in flow is already in progress, immediately return |false|. This
    // behavior is consistent w/ the actual browser-side implementation.
    std::move(callback).Run(false);
    return;
  }
  // Otherwise we cache the callback until FinishAssistantOptInFlow() is called.
  callback_ = std::move(callback);
}

bool TestAssistantSetup::BounceOptInWindowIfActive() {
  // If |callback_| exists, opt-in flow is in progress and the browser-side
  // implementation would return |true| after bouncing the dialog window.
  return !!callback_;
}

void TestAssistantSetup::FinishAssistantOptInFlow(bool completed) {
  DCHECK(callback_);
  std::move(callback_).Run(completed);
}

}  // namespace ash