24 lines
614 B
C++
24 lines
614 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/web_view_constants.h"
|
|
|
|
namespace atom {
|
|
|
|
namespace web_view {
|
|
|
|
const char kPreloadUrl[] = "preloadUrl";
|
|
const char kNodeIntegration[] = "nodeIntegration";
|
|
const char kPlugins[] = "plugins";
|
|
const char kDisableWebSecurity[] = "disableWebSecurity";
|
|
const char kPartitionId[] = "partitionId";
|
|
|
|
const int kDefaultWidth = 300;
|
|
const int kDefaultHeight = 300;
|
|
|
|
const char kWebViewInfoKeyName[] = "web_view_info";
|
|
|
|
} // namespace web_view
|
|
|
|
} // namespace atom
|