electron/atom/browser/common_web_contents_delegate.cc
2015-06-05 13:49:24 +08:00

16 lines
391 B
C++

// Copyright (c) 2015 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#include "atom/browser/common_web_contents_delegate.h"
namespace atom {
CommonWebContentsDelegate::CommonWebContentsDelegate(bool is_guest)
: is_guest_(is_guest) {
}
CommonWebContentsDelegate::~CommonWebContentsDelegate() {
}
} // namespace atom