summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/frame/frame_owner.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/frame/frame_owner.h')
-rw-r--r--chromium/third_party/blink/renderer/core/frame/frame_owner.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chromium/third_party/blink/renderer/core/frame/frame_owner.h b/chromium/third_party/blink/renderer/core/frame/frame_owner.h
index 90c1b81e456..00c4bcf9ae3 100644
--- a/chromium/third_party/blink/renderer/core/frame/frame_owner.h
+++ b/chromium/third_party/blink/renderer/core/frame/frame_owner.h
@@ -73,7 +73,7 @@ class CORE_EXPORT FrameOwner : public GarbageCollectedMixin {
virtual bool AllowFullscreen() const = 0;
virtual bool AllowPaymentRequest() const = 0;
virtual bool IsDisplayNone() const = 0;
- virtual mojom::ColorScheme GetColorScheme() const = 0;
+ virtual mojom::blink::ColorScheme GetColorScheme() const = 0;
virtual AtomicString RequiredCsp() const = 0;
// Returns whether or not children of the owned frame should be lazily loaded.
@@ -152,8 +152,8 @@ class CORE_EXPORT DummyFrameOwner final
bool AllowFullscreen() const override { return false; }
bool AllowPaymentRequest() const override { return false; }
bool IsDisplayNone() const override { return false; }
- mojom::ColorScheme GetColorScheme() const override {
- return mojom::ColorScheme::kLight;
+ mojom::blink::ColorScheme GetColorScheme() const override {
+ return mojom::blink::ColorScheme::kLight;
}
AtomicString RequiredCsp() const override { return g_null_atom; }
bool ShouldLazyLoadChildren() const override { return false; }