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

Side by Side Diff: chrome/common/render_messages.h

Issue 7709020: Moving the ViewHostMsg_PDFHasUnsupportedFeature IPC message to Chrome as PDF is a chrome specific (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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) 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 // Multiply-included file, no traditional include guard. 5 // Multiply-included file, no traditional include guard.
6 #include <map> 6 #include <map>
7 #include <set> 7 #include <set>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 bool /* allowed */) 281 bool /* allowed */)
282 282
283 // Sent in response to ViewHostMsg_DidBlockRunningInsecureContent. 283 // Sent in response to ViewHostMsg_DidBlockRunningInsecureContent.
284 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetAllowRunningInsecureContent, 284 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetAllowRunningInsecureContent,
285 bool /* allowed */) 285 bool /* allowed */)
286 286
287 // Sent when the profile changes the kSafeBrowsingEnabled preference. 287 // Sent when the profile changes the kSafeBrowsingEnabled preference.
288 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetClientSidePhishingDetection, 288 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetClientSidePhishingDetection,
289 bool /* enable_phishing_detection */) 289 bool /* enable_phishing_detection */)
290 290
291 // JavaScript related messages -----------------------------------------------
292
293 // Notify the JavaScript engine in the render to change its parameters
294 // while performing stress testing.
295 IPC_MESSAGE_ROUTED2(ChromeViewMsg_JavaScriptStressTestControl,
296 int /* cmd */,
297 int /* param */)
298
291 //----------------------------------------------------------------------------- 299 //-----------------------------------------------------------------------------
292 // TabContents messages 300 // TabContents messages
293 // These are messages sent from the renderer to the browser process. 301 // These are messages sent from the renderer to the browser process.
294 302
295 // Provides the contents for the given page that was loaded recently. 303 // Provides the contents for the given page that was loaded recently.
296 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_PageContents, 304 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_PageContents,
297 GURL /* URL of the page */, 305 GURL /* URL of the page */,
298 int32 /* page id */, 306 int32 /* page id */,
299 string16 /* page contents */) 307 string16 /* page contents */)
300 308
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
513 521
514 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_SetSuggestions, 522 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_SetSuggestions,
515 int32 /* page_id */, 523 int32 /* page_id */,
516 std::vector<std::string> /* suggestions */, 524 std::vector<std::string> /* suggestions */,
517 InstantCompleteBehavior) 525 InstantCompleteBehavior)
518 526
519 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_InstantSupportDetermined, 527 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_InstantSupportDetermined,
520 int32 /* page_id */, 528 int32 /* page_id */,
521 bool /* result */) 529 bool /* result */)
522 530
523 // JavaScript related messages ----------------------------------------------- 531 // The currently displayed PDF has an unsupported feature.
532 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_PDFHasUnsupportedFeature)
524 533
525 // Notify the JavaScript engine in the render to change its parameters
526 // while performing stress testing.
527 IPC_MESSAGE_ROUTED2(ChromeViewMsg_JavaScriptStressTestControl,
528 int /* cmd */,
529 int /* param */)
OLDNEW
« no previous file with comments | « chrome/browser/ui/tab_contents/tab_contents_wrapper.cc ('k') | chrome/renderer/chrome_ppb_pdf_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698