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

Unified Diff: third_party/WebKit/Source/core/workers/WorkerSettings.h

Issue 2171563002: Add WorkerSettings to expose certain flag values in WorkerGlobalScope (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nits Created 4 years, 5 months 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: third_party/WebKit/Source/core/workers/WorkerSettings.h
diff --git a/third_party/WebKit/Source/core/workers/WorkerSettings.h b/third_party/WebKit/Source/core/workers/WorkerSettings.h
new file mode 100644
index 0000000000000000000000000000000000000000..31443c50cb8e08a028e6aa4cfb781fe7b17780a6
--- /dev/null
+++ b/third_party/WebKit/Source/core/workers/WorkerSettings.h
@@ -0,0 +1,33 @@
+// 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 WorkerSettings_h
+#define WorkerSettings_h
+
+#include "core/CoreExport.h"
+#include "core/frame/Settings.h"
+
+namespace blink {
+
+class CORE_EXPORT WorkerSettings {
+public:
+ WorkerSettings(Settings*);
+ virtual ~WorkerSettings() {}
+
+ bool disableReadingFromCanvas() const { return m_disableReadingFromCanvas; }
+
+private:
+ void copyFlagValuesFromSettings(Settings*);
+ void setDefaultValues();
+
+ // The settings that are to be copied from main thread to worker thread
+ // These setting's flag values must remain unchanged throughout the document
+ // lifecycle.
+ // We hard-code the flags as there're very few flags at this moment.
+ bool m_disableReadingFromCanvas;
+};
+
+} // namespace blink
+
+#endif // WorkerSettings_h

Powered by Google App Engine
This is Rietveld 408576698