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

Side by Side Diff: content/common/pepper_plugin_registry.cc

Issue 6981001: Make the Pepper proxy support in-process font rendering. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 7 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 | « content/common/pepper_plugin_registry.h ('k') | content/content_browser.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/common/pepper_plugin_registry.h" 5 #include "content/common/pepper_plugin_registry.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/file_util.h" 8 #include "base/file_util.h"
9 #include "base/native_library.h" 9 #include "base/native_library.h"
10 #include "base/string_split.h" 10 #include "base/string_split.h"
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 return ChildProcess::current()->io_message_loop_proxy(); 225 return ChildProcess::current()->io_message_loop_proxy();
226 } 226 }
227 227
228 base::WaitableEvent* PepperPluginRegistry::GetShutdownEvent() { 228 base::WaitableEvent* PepperPluginRegistry::GetShutdownEvent() {
229 DCHECK(ChildProcess::current()) << "Must be in the renderer."; 229 DCHECK(ChildProcess::current()) << "Must be in the renderer.";
230 return ChildProcess::current()->GetShutDownEvent(); 230 return ChildProcess::current()->GetShutDownEvent();
231 } 231 }
232 232
233 std::set<PP_Instance>* PepperPluginRegistry::GetGloballySeenInstanceIDSet() { 233 std::set<PP_Instance>* PepperPluginRegistry::GetGloballySeenInstanceIDSet() {
234 // This function is not needed on the host side of the proxy. 234 // This function is not needed on the host side of the proxy.
235 NOTREACHED();
235 return NULL; 236 return NULL;
236 } 237 }
238
239 pp::shared_impl::WebKitForwarding* PepperPluginRegistry::GetWebKitForwarding() {
240 // This function is not needed on the host side of the proxy.
241 NOTREACHED();
242 return NULL;
243 }
244
245 void PepperPluginRegistry::PostToWebKitThread(
246 const tracked_objects::Location& from_here,
247 const base::Closure& task) {
248 // This function is not needed on the host side of the proxy.
249 NOTREACHED();
250 }
OLDNEW
« no previous file with comments | « content/common/pepper_plugin_registry.h ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698