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

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

Issue 6410115: Adds navigator.registerProtocolHandler. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 10 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 #include <map> 5 #include <map>
6 #include <set> 6 #include <set>
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 2510 matching lines...) Expand 10 before | Expand all | Expand 10 after
2521 // The currently displayed PDF has an unsupported feature. 2521 // The currently displayed PDF has an unsupported feature.
2522 IPC_MESSAGE_ROUTED0(ViewHostMsg_PDFHasUnsupportedFeature) 2522 IPC_MESSAGE_ROUTED0(ViewHostMsg_PDFHasUnsupportedFeature)
2523 2523
2524 // JavaScript related messages ----------------------------------------------- 2524 // JavaScript related messages -----------------------------------------------
2525 2525
2526 // Notify the JavaScript engine in the render to change its parameters 2526 // Notify the JavaScript engine in the render to change its parameters
2527 // while performing stress testing. 2527 // while performing stress testing.
2528 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl, 2528 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl,
2529 int /* cmd */, 2529 int /* cmd */,
2530 int /* param */) 2530 int /* param */)
2531
2532 // Register protocol handler --------------------------------------------------
2533
2534 IPC_MESSAGE_ROUTED3(ViewHostMsg_RegisterProtocolHandler,
2535 std::string /* scheme */,
2536 std::string /* url */,
2537 std::string /* title */)
tony 2011/02/07 20:51:45 I would pass title as string16 to avoid ambiguity
koz (OOO until 15th September) 2011/02/13 22:33:48 Done.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698