HomeSort by relevance Sort by last modified time
    Searched defs:PageClients (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/page/
Page.cpp 134 Page::Page(const PageClients& pageClients)
135 : m_chrome(adoptPtr(new Chrome(this, pageClients.chromeClient)))
138 , m_dragController(adoptPtr(new DragController(this, pageClients.dragClient)))
142 , m_contextMenuController(adoptPtr(new ContextMenuController(this, pageClients.contextMenuClient)))
145 , m_inspectorController(adoptPtr(new InspectorController(this, pageClients.inspectorClient)))
148 , m_geolocationController(adoptPtr(new GeolocationController(this, pageClients.geolocationClient)))
151 , m_deviceMotionController(RuntimeEnabledFeatures::deviceMotionEnabled() ? new DeviceMotionController(pageClients.deviceMotionClient) : 0)
152 , m_deviceOrientationController(RuntimeEnabledFeatures::deviceOrientationEnabled() ? new DeviceOrientationController(this, pageClients.deviceOrientationClient) : 0)
155 , m_speechInputClient(pageClients.speechInputClient
    [all...]
Page.h 104 struct PageClients {
105 WTF_MAKE_NONCOPYABLE(PageClients); WTF_MAKE_FAST_ALLOCATED;
107 PageClients();
108 ~PageClients();
123 Page(const PageClients&);

Completed in 50 milliseconds