blob: f966833464fb28640e33fd89315617923d2513c5 [file] [log] [blame]
// Copyright 2014 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 "content/public/common/resource_type.h"
namespace content {
bool IsResourceTypeFrame(ResourceType type) {
return type == ResourceType::kMainFrame || type == ResourceType::kSubFrame;
}
} // namespace content