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

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

Issue 636863002: Make SpeechRecognitionController per frame instead of per page. Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: first of many-ways CL Created 6 years 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
« 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 #include "public/web/WebWindowFeatures.h" 141 #include "public/web/WebWindowFeatures.h"
142 #include "web/CompositionUnderlineVectorBuilder.h" 142 #include "web/CompositionUnderlineVectorBuilder.h"
143 #include "web/ContextFeaturesClientImpl.h" 143 #include "web/ContextFeaturesClientImpl.h"
144 #include "web/DatabaseClientImpl.h" 144 #include "web/DatabaseClientImpl.h"
145 #include "web/FullscreenController.h" 145 #include "web/FullscreenController.h"
146 #include "web/GraphicsLayerFactoryChromium.h" 146 #include "web/GraphicsLayerFactoryChromium.h"
147 #include "web/LinkHighlight.h" 147 #include "web/LinkHighlight.h"
148 #include "web/NavigatorContentUtilsClientImpl.h" 148 #include "web/NavigatorContentUtilsClientImpl.h"
149 #include "web/PopupContainer.h" 149 #include "web/PopupContainer.h"
150 #include "web/PrerendererClientImpl.h" 150 #include "web/PrerendererClientImpl.h"
151 #include "web/SpeechRecognitionClientProxy.h"
152 #include "web/StorageQuotaClientImpl.h" 151 #include "web/StorageQuotaClientImpl.h"
153 #include "web/ValidationMessageClientImpl.h" 152 #include "web/ValidationMessageClientImpl.h"
154 #include "web/ViewportAnchor.h" 153 #include "web/ViewportAnchor.h"
155 #include "web/WebDevToolsAgentImpl.h" 154 #include "web/WebDevToolsAgentImpl.h"
156 #include "web/WebDevToolsAgentPrivate.h" 155 #include "web/WebDevToolsAgentPrivate.h"
157 #include "web/WebInputEventConversion.h" 156 #include "web/WebInputEventConversion.h"
158 #include "web/WebLocalFrameImpl.h" 157 #include "web/WebLocalFrameImpl.h"
159 #include "web/WebPagePopupImpl.h" 158 #include "web/WebPagePopupImpl.h"
160 #include "web/WebPluginContainerImpl.h" 159 #include "web/WebPluginContainerImpl.h"
161 #include "web/WebPopupMenuImpl.h" 160 #include "web/WebPopupMenuImpl.h"
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 pageClients.chromeClient = &m_chromeClientImpl; 425 pageClients.chromeClient = &m_chromeClientImpl;
427 pageClients.contextMenuClient = &m_contextMenuClientImpl; 426 pageClients.contextMenuClient = &m_contextMenuClientImpl;
428 pageClients.editorClient = &m_editorClientImpl; 427 pageClients.editorClient = &m_editorClientImpl;
429 pageClients.dragClient = &m_dragClientImpl; 428 pageClients.dragClient = &m_dragClientImpl;
430 pageClients.inspectorClient = &m_inspectorClientImpl; 429 pageClients.inspectorClient = &m_inspectorClientImpl;
431 pageClients.spellCheckerClient = &m_spellCheckerClientImpl; 430 pageClients.spellCheckerClient = &m_spellCheckerClientImpl;
432 pageClients.storageClient = &m_storageClientImpl; 431 pageClients.storageClient = &m_storageClientImpl;
433 432
434 m_page = adoptPtrWillBeNoop(new Page(pageClients)); 433 m_page = adoptPtrWillBeNoop(new Page(pageClients));
435 MediaKeysController::provideMediaKeysTo(*m_page, &m_mediaKeysClientImpl); 434 MediaKeysController::provideMediaKeysTo(*m_page, &m_mediaKeysClientImpl);
436 provideSpeechRecognitionTo(*m_page, SpeechRecognitionClientProxy::create(cli ent ? client->speechRecognizer() : 0));
437 provideNavigatorContentUtilsTo(*m_page, NavigatorContentUtilsClientImpl::cre ate(this)); 435 provideNavigatorContentUtilsTo(*m_page, NavigatorContentUtilsClientImpl::cre ate(this));
438 436
439 provideContextFeaturesTo(*m_page, ContextFeaturesClientImpl::create()); 437 provideContextFeaturesTo(*m_page, ContextFeaturesClientImpl::create());
440 DeviceOrientationInspectorAgent::provideTo(*m_page); 438 DeviceOrientationInspectorAgent::provideTo(*m_page);
441 439
442 m_page->inspectorController().registerModuleAgent(InspectorFileSystemAgent:: create(m_page.get())); 440 m_page->inspectorController().registerModuleAgent(InspectorFileSystemAgent:: create(m_page.get()));
443 provideDatabaseClientTo(*m_page, DatabaseClientImpl::create()); 441 provideDatabaseClientTo(*m_page, DatabaseClientImpl::create());
444 InspectorIndexedDBAgent::provideTo(m_page.get()); 442 InspectorIndexedDBAgent::provideTo(m_page.get());
445 provideStorageQuotaClientTo(*m_page, StorageQuotaClientImpl::create()); 443 provideStorageQuotaClientTo(*m_page, StorageQuotaClientImpl::create());
446 m_page->setValidationMessageClient(ValidationMessageClientImpl::create(*this )); 444 m_page->setValidationMessageClient(ValidationMessageClientImpl::create(*this ));
(...skipping 4091 matching lines...) Expand 10 before | Expand all | Expand 10 after
4538 return mainFrameImpl()->frameView()->layoutSize().width() == m_size.width 4536 return mainFrameImpl()->frameView()->layoutSize().width() == m_size.width
4539 || (constraints.minimumScale == constraints.maximumScale && constraints. minimumScale != -1); 4537 || (constraints.minimumScale == constraints.maximumScale && constraints. minimumScale != -1);
4540 } 4538 }
4541 4539
4542 void WebViewImpl::forceNextWebGLContextCreationToFail() 4540 void WebViewImpl::forceNextWebGLContextCreationToFail()
4543 { 4541 {
4544 WebGLRenderingContext::forceNextWebGLContextCreationToFail(); 4542 WebGLRenderingContext::forceNextWebGLContextCreationToFail();
4545 } 4543 }
4546 4544
4547 } // namespace blink 4545 } // 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