Add CommonWebContentsDelegate
This commit is contained in:
parent
e8f33f51fb
commit
19d742de37
7 changed files with 55 additions and 7 deletions
16
atom/browser/common_web_contents_delegate.cc
Normal file
16
atom/browser/common_web_contents_delegate.cc
Normal file
|
@ -0,0 +1,16 @@
|
|||
// 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
|
Loading…
Add table
Add a link
Reference in a new issue