blob: 0fbf7acbabd161f7be29f2e0a0420458d63a6a32 [file] [log] [blame]
// Copyright 2021 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 "google_apis/common/parser_util.h"
namespace google_apis {
bool IsResourceKindExpected(const base::Value& value,
const std::string& expected_kind) {
if (!value.is_dict())
return false;
const std::string* kind = value.FindStringKey(kApiResponseKindKey);
return kind && *kind == expected_kind;
}
} // namespace google_apis