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

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

Issue 7764014: Remove handling for the ViewHostMsg_GetCookies and ViewHostMsg_SetCookies from Chrome. These mess... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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 514 matching lines...) Expand 10 before | Expand all | Expand 10 after
525 std::vector<std::string> /* suggestions */, 525 std::vector<std::string> /* suggestions */,
526 InstantCompleteBehavior) 526 InstantCompleteBehavior)
527 527
528 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_InstantSupportDetermined, 528 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_InstantSupportDetermined,
529 int32 /* page_id */, 529 int32 /* page_id */,
530 bool /* result */) 530 bool /* result */)
531 531
532 // The currently displayed PDF has an unsupported feature. 532 // The currently displayed PDF has an unsupported feature.
533 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_PDFHasUnsupportedFeature) 533 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_PDFHasUnsupportedFeature)
534 534
535 // The following messages are used to set and get cookies for ChromeFrame
536 // processes.
537 // Used to set a cookie. The cookie is set asynchronously, but will be
538 // available to a subsequent ChromeViewHostMsg_GetCookies request.
539 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_SetCookie,
540 GURL /* url */,
541 GURL /* first_party_for_cookies */,
542 std::string /* cookie */)
543
544 // Used to get cookies for the given URL. This may block waiting for a
545 // previous SetCookie message to be processed.
546 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies,
547 GURL /* url */,
548 GURL /* first_party_for_cookies */,
549 std::string /* cookies */)
550
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/chrome_render_message_filter.cc ('k') | chrome/renderer/chrome_content_renderer_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698