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

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

Issue 899853002: Merge 188868 "Revert of Make SpeechRecognitionController per fra..." (Closed) Base URL: svn://svn.chromium.org/blink/branches/chromium/2272/
Patch Set: Created 5 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « Source/web/WebLocalFrameImpl.cpp ('k') | public/web/WebFrameClient.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2011, 2012 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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 #include "public/web/WebWindowFeatures.h" 140 #include "public/web/WebWindowFeatures.h"
141 #include "web/CompositionUnderlineVectorBuilder.h" 141 #include "web/CompositionUnderlineVectorBuilder.h"
142 #include "web/ContextFeaturesClientImpl.h" 142 #include "web/ContextFeaturesClientImpl.h"
143 #include "web/DatabaseClientImpl.h" 143 #include "web/DatabaseClientImpl.h"
144 #include "web/FullscreenController.h" 144 #include "web/FullscreenController.h"
145 #include "web/GraphicsLayerFactoryChromium.h" 145 #include "web/GraphicsLayerFactoryChromium.h"
146 #include "web/LinkHighlight.h" 146 #include "web/LinkHighlight.h"
147 #include "web/NavigatorContentUtilsClientImpl.h" 147 #include "web/NavigatorContentUtilsClientImpl.h"
148 #include "web/PopupContainer.h" 148 #include "web/PopupContainer.h"
149 #include "web/PrerendererClientImpl.h" 149 #include "web/PrerendererClientImpl.h"
150 #include "web/SpeechRecognitionClientProxy.h"
150 #include "web/StorageQuotaClientImpl.h" 151 #include "web/StorageQuotaClientImpl.h"
151 #include "web/ValidationMessageClientImpl.h" 152 #include "web/ValidationMessageClientImpl.h"
152 #include "web/ViewportAnchor.h" 153 #include "web/ViewportAnchor.h"
153 #include "web/WebDevToolsAgentImpl.h" 154 #include "web/WebDevToolsAgentImpl.h"
154 #include "web/WebDevToolsAgentPrivate.h" 155 #include "web/WebDevToolsAgentPrivate.h"
155 #include "web/WebInputEventConversion.h" 156 #include "web/WebInputEventConversion.h"
156 #include "web/WebLocalFrameImpl.h" 157 #include "web/WebLocalFrameImpl.h"
157 #include "web/WebPagePopupImpl.h" 158 #include "web/WebPagePopupImpl.h"
158 #include "web/WebPluginContainerImpl.h" 159 #include "web/WebPluginContainerImpl.h"
159 #include "web/WebPopupMenuImpl.h" 160 #include "web/WebPopupMenuImpl.h"
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
418 pageClients.chromeClient = &m_chromeClientImpl; 419 pageClients.chromeClient = &m_chromeClientImpl;
419 pageClients.contextMenuClient = &m_contextMenuClientImpl; 420 pageClients.contextMenuClient = &m_contextMenuClientImpl;
420 pageClients.editorClient = &m_editorClientImpl; 421 pageClients.editorClient = &m_editorClientImpl;
421 pageClients.dragClient = &m_dragClientImpl; 422 pageClients.dragClient = &m_dragClientImpl;
422 pageClients.inspectorClient = &m_inspectorClientImpl; 423 pageClients.inspectorClient = &m_inspectorClientImpl;
423 pageClients.spellCheckerClient = &m_spellCheckerClientImpl; 424 pageClients.spellCheckerClient = &m_spellCheckerClientImpl;
424 pageClients.storageClient = &m_storageClientImpl; 425 pageClients.storageClient = &m_storageClientImpl;
425 426
426 m_page = adoptPtrWillBeNoop(new Page(pageClients)); 427 m_page = adoptPtrWillBeNoop(new Page(pageClients));
427 MediaKeysController::provideMediaKeysTo(*m_page, &m_mediaKeysClientImpl); 428 MediaKeysController::provideMediaKeysTo(*m_page, &m_mediaKeysClientImpl);
429 provideSpeechRecognitionTo(*m_page, SpeechRecognitionClientProxy::create(cli ent ? client->speechRecognizer() : 0));
428 provideNavigatorContentUtilsTo(*m_page, NavigatorContentUtilsClientImpl::cre ate(this)); 430 provideNavigatorContentUtilsTo(*m_page, NavigatorContentUtilsClientImpl::cre ate(this));
429 431
430 provideContextFeaturesTo(*m_page, ContextFeaturesClientImpl::create()); 432 provideContextFeaturesTo(*m_page, ContextFeaturesClientImpl::create());
431 DeviceOrientationInspectorAgent::provideTo(*m_page); 433 DeviceOrientationInspectorAgent::provideTo(*m_page);
432 434
433 m_page->inspectorController().registerModuleAgent(InspectorFileSystemAgent:: create(m_page.get())); 435 m_page->inspectorController().registerModuleAgent(InspectorFileSystemAgent:: create(m_page.get()));
434 provideDatabaseClientTo(*m_page, DatabaseClientImpl::create()); 436 provideDatabaseClientTo(*m_page, DatabaseClientImpl::create());
435 InspectorIndexedDBAgent::provideTo(m_page.get()); 437 InspectorIndexedDBAgent::provideTo(m_page.get());
436 provideStorageQuotaClientTo(*m_page, StorageQuotaClientImpl::create()); 438 provideStorageQuotaClientTo(*m_page, StorageQuotaClientImpl::create());
437 m_page->setValidationMessageClient(ValidationMessageClientImpl::create(*this )); 439 m_page->setValidationMessageClient(ValidationMessageClientImpl::create(*this ));
(...skipping 4093 matching lines...) Expand 10 before | Expand all | Expand 10 after
4531 return mainFrameImpl()->frameView()->layoutSize().width() == m_size.width 4533 return mainFrameImpl()->frameView()->layoutSize().width() == m_size.width
4532 || (constraints.minimumScale == constraints.maximumScale && constraints. minimumScale != -1); 4534 || (constraints.minimumScale == constraints.maximumScale && constraints. minimumScale != -1);
4533 } 4535 }
4534 4536
4535 void WebViewImpl::forceNextWebGLContextCreationToFail() 4537 void WebViewImpl::forceNextWebGLContextCreationToFail()
4536 { 4538 {
4537 WebGLRenderingContext::forceNextWebGLContextCreationToFail(); 4539 WebGLRenderingContext::forceNextWebGLContextCreationToFail();
4538 } 4540 }
4539 4541
4540 } // namespace blink 4542 } // namespace blink
OLDNEW
« no previous file with comments | « Source/web/WebLocalFrameImpl.cpp ('k') | public/web/WebFrameClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698