chromium/chrome/browser/ui/tab_contents/tab_contents_iterator.cc

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

#include "chrome/browser/ui/tab_contents/tab_contents_iterator.h"

#include "base/check.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"

// This does not create a useful iterator, but providing a default constructor
// is required for forward iterators by the C++ spec.
AllTabContentsesList::Iterator::Iterator() :{}

AllTabContentsesList::Iterator::Iterator(bool is_end_iter)
    :{}

AllTabContentsesList::Iterator::Iterator(const Iterator& iterator) = default;

AllTabContentsesList::Iterator::~Iterator() = default;

void AllTabContentsesList::Iterator::Next() {}

const AllTabContentsesList& AllTabContentses() {}