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

Side by Side Diff: content/common/view_messages.h

Issue 7624012: First pass on intents options UI. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
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 // IPC messages for page rendering. 5 // IPC messages for page rendering.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "base/process.h" 8 #include "base/process.h"
9 #include "base/shared_memory.h" 9 #include "base/shared_memory.h"
10 #include "content/common/common_param_traits.h" 10 #include "content/common/common_param_traits.h"
(...skipping 2023 matching lines...) Expand 10 before | Expand all | Expand 10 after
2034 GURL /* url */, 2034 GURL /* url */,
2035 string16 /* title */) 2035 string16 /* title */)
2036 2036
2037 // Register a new handler for Intents with the given action and type filter. 2037 // Register a new handler for Intents with the given action and type filter.
2038 IPC_MESSAGE_ROUTED4(ViewHostMsg_RegisterIntentHandler, 2038 IPC_MESSAGE_ROUTED4(ViewHostMsg_RegisterIntentHandler,
2039 string16 /* action */, 2039 string16 /* action */,
2040 string16 /* type */, 2040 string16 /* type */,
2041 string16 /* href */, 2041 string16 /* href */,
2042 string16 /* title */) 2042 string16 /* title */)
2043 2043
2044 // Route the startActivity Intents call from a page to the service picker.
2045 IPC_MESSAGE_ROUTED5(ViewHostMsg_WebIntentDispatch,
2046 int /* routing id */,
2047 string16 /* action */,
2048 string16 /* type */,
2049 string16 /* payload data */,
2050 int /* intent ID */)
2051
2044 // Stores new inspector setting in the profile. 2052 // Stores new inspector setting in the profile.
2045 // TODO(jam): this should be in the chrome module 2053 // TODO(jam): this should be in the chrome module
2046 IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateInspectorSetting, 2054 IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateInspectorSetting,
2047 std::string, /* key */ 2055 std::string, /* key */
2048 std::string /* value */) 2056 std::string /* value */)
2049 2057
2050 // Send back a string to be recorded by UserMetrics. 2058 // Send back a string to be recorded by UserMetrics.
2051 IPC_MESSAGE_CONTROL1(ViewHostMsg_UserMetricsRecordAction, 2059 IPC_MESSAGE_CONTROL1(ViewHostMsg_UserMetricsRecordAction,
2052 std::string /* action */) 2060 std::string /* action */)
2053 2061
(...skipping 18 matching lines...) Expand all
2072 int32 /* complete status */) 2080 int32 /* complete status */)
2073 2081
2074 // Request updated information about the client firewall traversal policy. 2082 // Request updated information about the client firewall traversal policy.
2075 // Will result in a ViewMsg_UpdateRemoteAccessClientFirewallTraversal message 2083 // Will result in a ViewMsg_UpdateRemoteAccessClientFirewallTraversal message
2076 // being sent back. 2084 // being sent back.
2077 IPC_MESSAGE_ROUTED0(ViewHostMsg_RequestRemoteAccessClientFirewallTraversal) 2085 IPC_MESSAGE_ROUTED0(ViewHostMsg_RequestRemoteAccessClientFirewallTraversal)
2078 2086
2079 // Notifies the browser of an event occurring in the media pipeline. 2087 // Notifies the browser of an event occurring in the media pipeline.
2080 IPC_MESSAGE_CONTROL1(ViewHostMsg_MediaLogEvent, 2088 IPC_MESSAGE_CONTROL1(ViewHostMsg_MediaLogEvent,
2081 media::MediaLogEvent /* event */) 2089 media::MediaLogEvent /* event */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698