| Index: ios/chrome/browser/ui/tab_switcher/session_changes.mm
|
| diff --git a/ios/chrome/browser/ui/tab_switcher/session_changes.mm b/ios/chrome/browser/ui/tab_switcher/session_changes.mm
|
| deleted file mode 100644
|
| index b50ac77c89426520fbc6b631991a3b92ce6905cc..0000000000000000000000000000000000000000
|
| --- a/ios/chrome/browser/ui/tab_switcher/session_changes.mm
|
| +++ /dev/null
|
| @@ -1,31 +0,0 @@
|
| -// Copyright 2016 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.
|
| -
|
| -#import "ios/chrome/browser/ui/tab_switcher/session_changes.h"
|
| -
|
| -#import "ios/chrome/browser/ui/tab_switcher/tab_switcher_utils.h"
|
| -
|
| -SessionChanges::SessionChanges(
|
| - std::vector<size_t> const& tabHashesInInitialState,
|
| - std::vector<size_t> const& tabHashesInFinalState) {
|
| - TabSwitcherMinimalReplacementOperations(tabHashesInInitialState,
|
| - tabHashesInFinalState, &updates_,
|
| - &deletions_, &insertions_);
|
| -}
|
| -
|
| -SessionChanges::~SessionChanges() {}
|
| -
|
| -std::vector<size_t> const& SessionChanges::deletions() const {
|
| - return deletions_;
|
| -}
|
| -std::vector<size_t> const& SessionChanges::insertions() const {
|
| - return insertions_;
|
| -}
|
| -std::vector<size_t> const& SessionChanges::updates() const {
|
| - return updates_;
|
| -}
|
| -
|
| -bool SessionChanges::hasChanges() const {
|
| - return updates_.size() || deletions_.size() || insertions_.size();
|
| -}
|
|
|