blob: 6ff7fb6746d230dfbe3a2a1a83a4df97d381de17 [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 == RESOURCE_TYPE_MAIN_FRAME || type == RESOURCE_TYPE_SUB_FRAME;
}
} // namespace content