| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "blimp/engine/common/tab.h" |
| 6 |
| 7 #include <utility> |
| 8 |
| 9 #include "blimp/engine/common/page_load_tracker.h" |
| 10 #include "content/public/browser/web_contents.h" |
| 11 |
| 12 namespace blimp { |
| 13 namespace engine { |
| 14 |
| 15 Tab::Tab(int id, std::unique_ptr<content::WebContents> web_contents) |
| 16 : web_contents_(std::move(web_contents)), id_(id) {} |
| 17 |
| 18 Tab::~Tab() {} |
| 19 |
| 20 } // namespace engine |
| 21 } // namespace blimp |
| OLD | NEW |