blob: 44886728389afea192675b90b62fa1b1c45a2f68 [file] [log] [blame]
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import <ostream>
#import "base/notreached.h"
#import "ios/public/provider/chrome/browser/user_feedback/user_feedback_api.h"
namespace ios {
namespace provider {
bool IsUserFeedbackSupported() {
return false;
}
UIViewController* CreateUserFeedbackViewController(
UserFeedbackConfiguration* configuration) {
NOTREACHED() << "User feedback reporting not supported.";
}
void UploadAllPendingUserFeedback() {
NOTREACHED() << "User feedback reporting not supported.";
}
bool CanUseStartUserFeedbackFlow() {
NOTREACHED() << "User feedback reporting not supported.";
}
bool StartUserFeedbackFlow(UserFeedbackConfiguration* configuration,
UIViewController* presenting_view_controller,
NSError** error) {
NOTREACHED() << "User feedback reporting not supported.";
}
} // namespace provider
} // namespace ios