| Index: blimp/engine/common/tab.cc
|
| diff --git a/blimp/engine/common/tab.cc b/blimp/engine/common/tab.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a80b6f07fc5500ef3cccdb4f4fbc63876aff7ee6
|
| --- /dev/null
|
| +++ b/blimp/engine/common/tab.cc
|
| @@ -0,0 +1,21 @@
|
| +// 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.
|
| +
|
| +#include "blimp/engine/common/tab.h"
|
| +
|
| +#include <utility>
|
| +
|
| +#include "blimp/engine/common/page_load_tracker.h"
|
| +#include "content/public/browser/web_contents.h"
|
| +
|
| +namespace blimp {
|
| +namespace engine {
|
| +
|
| +Tab::Tab(int id, std::unique_ptr<content::WebContents> web_contents)
|
| + : web_contents_(std::move(web_contents)), id_(id) {}
|
| +
|
| +Tab::~Tab() {}
|
| +
|
| +} // namespace engine
|
| +} // namespace blimp
|
|
|