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

Side by Side Diff: ppapi/proxy/plugin_dispatcher.cc

Issue 6334016: Refactor PPAPI proxy resource handling to maintain which host they came from,... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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
OLDNEW
1 // Copyright (c) 2010 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 "ppapi/proxy/plugin_dispatcher.h" 5 #include "ppapi/proxy/plugin_dispatcher.h"
6 6
7 #include <map> 7 #include <map>
8 8
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "ipc/ipc_message.h" 11 #include "ipc/ipc_message.h"
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 98
99 void PluginDispatcher::OnMsgShutdown() { 99 void PluginDispatcher::OnMsgShutdown() {
100 if (shutdown_module_) 100 if (shutdown_module_)
101 shutdown_module_(); 101 shutdown_module_();
102 MessageLoop::current()->Quit(); 102 MessageLoop::current()->Quit();
103 } 103 }
104 104
105 } // namespace proxy 105 } // namespace proxy
106 } // namespace pp 106 } // namespace pp
107 107
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698