Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(134)

Unified Diff: Source/WebCore/page/Settings.h

Issue 8806015: Changes to support a second VM. (Closed) Base URL: svn://svn.chromium.org/dash/experimental/chrome/src/webkit-full
Patch Set: . Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/WebCore/page/Settings.h
diff --git a/Source/WebCore/page/Settings.h b/Source/WebCore/page/Settings.h
index 8356f47cd7b218ecce75d4dfdea63b2aaa1b8edd..b49d4786535c25b218c85b7643a573e5a08e77c7 100644
--- a/Source/WebCore/page/Settings.h
+++ b/Source/WebCore/page/Settings.h
@@ -119,6 +119,9 @@ namespace WebCore {
// HTML sandbox attribute into account.
bool isScriptEnabled() const { return m_isScriptEnabled; }
+ void setDartEnabled(bool);
+ bool isDartEnabled() const { return m_isDartEnabled; }
+
void setWebSecurityEnabled(bool);
bool isWebSecurityEnabled() const { return m_isWebSecurityEnabled; }
@@ -527,6 +530,7 @@ namespace WebCore {
bool m_arePluginsEnabled : 1;
bool m_localStorageEnabled : 1;
bool m_isScriptEnabled : 1;
+ bool m_isDartEnabled : 1;
bool m_isWebSecurityEnabled : 1;
bool m_allowUniversalAccessFromFileURLs: 1;
bool m_allowFileAccessFromFileURLs: 1;

Powered by Google App Engine
This is Rietveld 408576698