// 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 "components/sessions/core/session_types.h" #include <stddef.h> #include "components/sessions/core/session_command.h" #include "components/tab_groups/tab_group_id.h" namespace sessions { // SessionTab ----------------------------------------------------------------- SessionTab::SessionTab() : … { … } SessionTab::~SessionTab() { … } // SessionTabGroup ------------------------------------------------------------- SessionTabGroup::SessionTabGroup(const tab_groups::TabGroupId& id) : … { … } SessionTabGroup::~SessionTabGroup() { … } // SessionWindow --------------------------------------------------------------- SessionWindow::SessionWindow() : … { … } SessionWindow::~SessionWindow() { … } } // namespace sessions