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

Side by Side Diff: chrome/common/chrome_content_client.cc

Issue 6319001: Support window.opener after a process swap. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge with trunk. 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 | « chrome/common/chrome_content_client.h ('k') | chrome/common/render_messages.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) 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 "chrome/common/chrome_content_client.h" 5 #include "chrome/common/chrome_content_client.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/path_service.h" 9 #include "base/path_service.h"
10 #include "base/string_split.h" 10 #include "base/string_split.h"
11 #include "base/string_util.h" 11 #include "base/string_util.h"
12 #include "chrome/common/child_process_logging.h" 12 #include "chrome/common/child_process_logging.h"
13 #include "chrome/common/chrome_paths.h" 13 #include "chrome/common/chrome_paths.h"
14 #include "chrome/common/chrome_switches.h" 14 #include "chrome/common/chrome_switches.h"
15 #include "chrome/common/render_messages.h"
15 #include "content/common/pepper_plugin_registry.h" 16 #include "content/common/pepper_plugin_registry.h"
16 #include "remoting/client/plugin/pepper_entrypoints.h" 17 #include "remoting/client/plugin/pepper_entrypoints.h"
17 18
18 namespace { 19 namespace {
19 20
20 const char* kPDFPluginName = "Chrome PDF Viewer"; 21 const char* kPDFPluginName = "Chrome PDF Viewer";
21 const char* kPDFPluginMimeType = "application/pdf"; 22 const char* kPDFPluginMimeType = "application/pdf";
22 const char* kPDFPluginExtension = "pdf"; 23 const char* kPDFPluginExtension = "pdf";
23 const char* kPDFPluginDescription = "Portable Document Format"; 24 const char* kPDFPluginDescription = "Portable Document Format";
24 25
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 } 178 }
178 179
179 void ChromeContentClient::AddPepperPlugins( 180 void ChromeContentClient::AddPepperPlugins(
180 std::vector<PepperPluginInfo>* plugins) { 181 std::vector<PepperPluginInfo>* plugins) {
181 #if !defined(NACL_WIN64) // The code this needs isn't linked on Win64 builds. 182 #if !defined(NACL_WIN64) // The code this needs isn't linked on Win64 builds.
182 ComputeBuiltInPlugins(plugins); 183 ComputeBuiltInPlugins(plugins);
183 AddOutOfProcessFlash(plugins); 184 AddOutOfProcessFlash(plugins);
184 #endif 185 #endif
185 } 186 }
186 187
188 bool ChromeContentClient::CanSendWhileSwappedOut(const IPC::Message* msg) {
189 // Any Chrome-specific messages that must be allowed to be sent from swapped
190 // out renderers.
191 switch (msg->type()) {
192 case ViewHostMsg_DomOperationResponse::ID:
193 return true;
194 default:
195 break;
196 }
197 return false;
198 }
199
200 bool ChromeContentClient::CanHandleWhileSwappedOut(
201 const IPC::Message& msg) {
202 // Any Chrome-specific messages (apart from those listed in
203 // CanSendWhileSwappedOut) that must be handled by the browser when sent from
204 // swapped out renderers.
205 switch (msg.type()) {
206 case ViewHostMsg_Snapshot::ID:
207 return true;
208 default:
209 break;
210 }
211 return false;
212 }
213
187 } // namespace chrome 214 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/common/chrome_content_client.h ('k') | chrome/common/render_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698