blob: 99d5663a4a2c7a3d741c07de849a48290d8267d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// 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.
#ifndef BLIMP_ENGINE_APP_ENGINE_SETTINGS_H_
#define BLIMP_ENGINE_APP_ENGINE_SETTINGS_H_
namespace blimp {
namespace engine {
struct EngineSettings {
// -------WebPreferences-------
bool record_whole_document;
EngineSettings();
EngineSettings(const EngineSettings& other);
~EngineSettings();
};
} // namespace engine
} // namespace blimp
#endif // BLIMP_ENGINE_APP_ENGINE_SETTINGS_H_
|