Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef BLIMP_ENGINE_APP_ENGINE_SETTINGS_H_ | 5 #ifndef BLIMP_ENGINE_APP_ENGINE_SETTINGS_H_ |
| 6 #define BLIMP_ENGINE_APP_ENGINE_SETTINGS_H_ | 6 #define BLIMP_ENGINE_APP_ENGINE_SETTINGS_H_ |
| 7 | 7 |
| 8 #include "content/public/common/web_preferences.h" | |
| 9 | |
| 8 namespace blimp { | 10 namespace blimp { |
| 9 namespace engine { | 11 namespace engine { |
| 10 | 12 |
| 11 struct EngineSettings { | 13 struct EngineSettings { |
| 12 // -------WebPreferences------- | 14 // -------WebPreferences------- |
| 13 bool record_whole_document; | 15 bool record_whole_document; |
| 16 content::ImageAnimationPolicy animation_policy; | |
|
Wez
2016/04/20 23:09:06
Not specific to this CL, but...
1. This structure
Khushal
2016/04/21 00:21:25
Done.
| |
| 14 | 17 |
| 15 EngineSettings(); | 18 EngineSettings(); |
| 16 EngineSettings(const EngineSettings& other); | 19 EngineSettings(const EngineSettings& other); |
| 17 ~EngineSettings(); | 20 ~EngineSettings(); |
| 18 }; | 21 }; |
| 19 | 22 |
| 20 } // namespace engine | 23 } // namespace engine |
| 21 } // namespace blimp | 24 } // namespace blimp |
| 22 | 25 |
| 23 #endif // BLIMP_ENGINE_APP_ENGINE_SETTINGS_H_ | 26 #endif // BLIMP_ENGINE_APP_ENGINE_SETTINGS_H_ |
| OLD | NEW |