| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #import "ios/shared/chrome/browser/tabs/fake_web_state_list_delegate.h" | 5 #import "ios/shared/chrome/browser/tabs/fake_web_state_list_delegate.h" |
| 6 | 6 |
| 7 #if !defined(__has_feature) || !__has_feature(objc_arc) | 7 #if !defined(__has_feature) || !__has_feature(objc_arc) |
| 8 #error "This file requires ARC support." | 8 #error "This file requires ARC support." |
| 9 #endif | 9 #endif |
| 10 | 10 |
| 11 FakeWebStateListDelegate::FakeWebStateListDelegate() = default; | 11 FakeWebStateListDelegate::FakeWebStateListDelegate() = default; |
| 12 | 12 |
| 13 FakeWebStateListDelegate::~FakeWebStateListDelegate() = default; | 13 FakeWebStateListDelegate::~FakeWebStateListDelegate() = default; |
| 14 | 14 |
| 15 void FakeWebStateListDelegate::WillAddWebState(web::WebState* web_state) {} | 15 void FakeWebStateListDelegate::WillAddWebState(web::WebState* web_state) {} |
| 16 |
| 17 void FakeWebStateListDelegate::WebStateDetached(web::WebState* web_state) {} |
| OLD | NEW |