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

Side by Side Diff: Source/web/WebLocalFrameImpl.cpp

Issue 1084923002: Wake Lock API implementation (Blink part) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 8 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 #include "bindings/core/v8/V8Binding.h" 94 #include "bindings/core/v8/V8Binding.h"
95 #include "bindings/core/v8/V8GCController.h" 95 #include "bindings/core/v8/V8GCController.h"
96 #include "bindings/core/v8/V8PerIsolateData.h" 96 #include "bindings/core/v8/V8PerIsolateData.h"
97 #include "core/HTMLNames.h" 97 #include "core/HTMLNames.h"
98 #include "core/dom/Document.h" 98 #include "core/dom/Document.h"
99 #include "core/dom/IconURL.h" 99 #include "core/dom/IconURL.h"
100 #include "core/dom/MessagePort.h" 100 #include "core/dom/MessagePort.h"
101 #include "core/dom/Node.h" 101 #include "core/dom/Node.h"
102 #include "core/dom/NodeTraversal.h" 102 #include "core/dom/NodeTraversal.h"
103 #include "core/dom/SuspendableTask.h" 103 #include "core/dom/SuspendableTask.h"
104 #include "core/dom/WakeLockController.h"
104 #include "core/dom/shadow/ShadowRoot.h" 105 #include "core/dom/shadow/ShadowRoot.h"
105 #include "core/editing/Editor.h" 106 #include "core/editing/Editor.h"
106 #include "core/editing/FrameSelection.h" 107 #include "core/editing/FrameSelection.h"
107 #include "core/editing/InputMethodController.h" 108 #include "core/editing/InputMethodController.h"
108 #include "core/editing/PlainTextRange.h" 109 #include "core/editing/PlainTextRange.h"
109 #include "core/editing/SpellChecker.h" 110 #include "core/editing/SpellChecker.h"
110 #include "core/editing/TextAffinity.h" 111 #include "core/editing/TextAffinity.h"
111 #include "core/editing/htmlediting.h" 112 #include "core/editing/htmlediting.h"
112 #include "core/editing/iterators/TextIterator.h" 113 #include "core/editing/iterators/TextIterator.h"
113 #include "core/editing/markup.h" 114 #include "core/editing/markup.h"
(...skipping 1520 matching lines...) Expand 10 before | Expand all | Expand 10 after
1634 if (m_client) 1635 if (m_client)
1635 providePushControllerTo(*m_frame, m_client->pushClient()); 1636 providePushControllerTo(*m_frame, m_client->pushClient());
1636 1637
1637 provideNotificationPermissionClientTo(*m_frame, NotificationPermissionCl ientImpl::create()); 1638 provideNotificationPermissionClientTo(*m_frame, NotificationPermissionCl ientImpl::create());
1638 provideUserMediaTo(*m_frame, &m_userMediaClientImpl); 1639 provideUserMediaTo(*m_frame, &m_userMediaClientImpl);
1639 provideGeolocationTo(*m_frame, m_geolocationClientProxy.get()); 1640 provideGeolocationTo(*m_frame, m_geolocationClientProxy.get());
1640 m_geolocationClientProxy->setController(GeolocationController::from(m_fr ame.get())); 1641 m_geolocationClientProxy->setController(GeolocationController::from(m_fr ame.get()));
1641 provideMIDITo(*m_frame, MIDIClientProxy::create(m_client ? m_client->web MIDIClient() : nullptr)); 1642 provideMIDITo(*m_frame, MIDIClientProxy::create(m_client ? m_client->web MIDIClient() : nullptr));
1642 provideLocalFileSystemTo(*m_frame, LocalFileSystemClient::create()); 1643 provideLocalFileSystemTo(*m_frame, LocalFileSystemClient::create());
1643 1644
1645 if (RuntimeEnabledFeatures::wakeLockEnabled())
1646 WakeLockController::provideTo(*m_frame, m_client ? m_client->wakeLoc kClient() : nullptr);
1644 if (RuntimeEnabledFeatures::screenOrientationEnabled()) 1647 if (RuntimeEnabledFeatures::screenOrientationEnabled())
1645 ScreenOrientationController::provideTo(*m_frame, m_client ? m_client ->webScreenOrientationClient() : nullptr); 1648 ScreenOrientationController::provideTo(*m_frame, m_client ? m_client ->webScreenOrientationClient() : nullptr);
1646 if (RuntimeEnabledFeatures::presentationEnabled()) 1649 if (RuntimeEnabledFeatures::presentationEnabled())
1647 PresentationController::provideTo(*m_frame, m_client ? m_client->pre sentationClient() : nullptr); 1650 PresentationController::provideTo(*m_frame, m_client ? m_client->pre sentationClient() : nullptr);
1648 if (RuntimeEnabledFeatures::permissionsEnabled()) 1651 if (RuntimeEnabledFeatures::permissionsEnabled())
1649 PermissionController::provideTo(*m_frame, m_client ? m_client->permi ssionClient() : nullptr); 1652 PermissionController::provideTo(*m_frame, m_client ? m_client->permi ssionClient() : nullptr);
1650 } 1653 }
1651 } 1654 }
1652 1655
1653 PassRefPtrWillBeRawPtr<LocalFrame> WebLocalFrameImpl::initializeCoreFrame(FrameH ost* host, FrameOwner* owner, const AtomicString& name, const AtomicString& fall backName) 1656 PassRefPtrWillBeRawPtr<LocalFrame> WebLocalFrameImpl::initializeCoreFrame(FrameH ost* host, FrameOwner* owner, const AtomicString& name, const AtomicString& fall backName)
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after
2085 { 2088 {
2086 m_frameWidget = frameWidget; 2089 m_frameWidget = frameWidget;
2087 } 2090 }
2088 2091
2089 WebFrameWidgetImpl* WebLocalFrameImpl::frameWidget() const 2092 WebFrameWidgetImpl* WebLocalFrameImpl::frameWidget() const
2090 { 2093 {
2091 return m_frameWidget; 2094 return m_frameWidget;
2092 } 2095 }
2093 2096
2094 } // namespace blink 2097 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698