chromium/third_party/blink/renderer/core/inspector/inspected_frames.cc

// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/core/inspector/inspected_frames.h"

#include "third_party/blink/renderer/core/frame/local_dom_window.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"
#include "third_party/blink/renderer/platform/weborigin/security_origin.h"

namespace blink {

InspectedFrames::InspectedFrames(LocalFrame* root) :{}

InspectedFrames::Iterator InspectedFrames::begin() {}

InspectedFrames::Iterator InspectedFrames::end() {}

bool InspectedFrames::Contains(LocalFrame* frame) const {}

LocalFrame* InspectedFrames::FrameWithSecurityOrigin(
    const String& origin_raw_string) {}

LocalFrame* InspectedFrames::FrameWithStorageKey(const String& key_raw_string) {}

InspectedFrames::Iterator::Iterator(LocalFrame* root, LocalFrame* current)
    :{}

InspectedFrames::Iterator& InspectedFrames::Iterator::operator++() {}

InspectedFrames::Iterator InspectedFrames::Iterator::operator++(int) {}

bool InspectedFrames::Iterator::operator==(const Iterator& other) const {}

bool InspectedFrames::Iterator::operator!=(const Iterator& other) const {}

void InspectedFrames::Trace(Visitor* visitor) const {}

}  // namespace blink