shell_risk_data_loader_fake.m 471 B

123456789101112131415161718
  1. // Copyright 2018 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #import "ios/web_view/shell/shell_risk_data_loader.h"
  5. #if !defined(__has_feature) || !__has_feature(objc_arc)
  6. #error "This file requires ARC support."
  7. #endif
  8. // Fake implementation of ShellRiskDataLoader.
  9. @implementation ShellRiskDataLoader
  10. - (NSString*)riskData {
  11. return @"dummy-risk-data";
  12. }
  13. @end