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

Side by Side Diff: content/plugin/plugin_channel_base.cc

Issue 6672048: Move plugin code to content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 9 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/plugin/plugin_channel_base.h ('k') | content/plugin/plugin_interpose_util_mac.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 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 "chrome/plugin/plugin_channel_base.h" 5 #include "content/plugin/plugin_channel_base.h"
6 6
7 #include <stack> 7 #include <stack>
8 8
9 #include "base/auto_reset.h" 9 #include "base/auto_reset.h"
10 #include "base/hash_tables.h" 10 #include "base/hash_tables.h"
11 #include "base/lazy_instance.h" 11 #include "base/lazy_instance.h"
12 #include "base/string_number_conversions.h" 12 #include "base/string_number_conversions.h"
13 #include "content/common/child_process.h" 13 #include "content/common/child_process.h"
14 #include "ipc/ipc_sync_message.h" 14 #include "ipc/ipc_sync_message.h"
15 15
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 232
233 bool PluginChannelBase::OnControlMessageReceived(const IPC::Message& msg) { 233 bool PluginChannelBase::OnControlMessageReceived(const IPC::Message& msg) {
234 NOTREACHED() << 234 NOTREACHED() <<
235 "should override in subclass if you care about control messages"; 235 "should override in subclass if you care about control messages";
236 return false; 236 return false;
237 } 237 }
238 238
239 void PluginChannelBase::OnChannelError() { 239 void PluginChannelBase::OnChannelError() {
240 channel_valid_ = false; 240 channel_valid_ = false;
241 } 241 }
OLDNEW
« no previous file with comments | « content/plugin/plugin_channel_base.h ('k') | content/plugin/plugin_interpose_util_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698