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

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

Issue 567037: Initial work on making extensions work in incognito mode. (Closed)
Patch Set: added experimental requirement Created 10 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
« no previous file with comments | « chrome/common/extensions/user_script.cc ('k') | chrome/renderer/render_thread.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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 // This header is meant to be included in multiple passes, hence no traditional 5 // This header is meant to be included in multiple passes, hence no traditional
6 // header guard. 6 // header guard.
7 // See ipc_message_macros.h for explanation of the macros and passes. 7 // See ipc_message_macros.h for explanation of the macros and passes.
8 8
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 10
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 IPC_MESSAGE_CONTROL1(ViewMsg_VisitedLink_Add, std::vector<uint64>) 232 IPC_MESSAGE_CONTROL1(ViewMsg_VisitedLink_Add, std::vector<uint64>)
233 233
234 // History system notification that one or more history items have been 234 // History system notification that one or more history items have been
235 // deleted, which at this point means that all link coloring state must be 235 // deleted, which at this point means that all link coloring state must be
236 // re-calculated. 236 // re-calculated.
237 IPC_MESSAGE_CONTROL0(ViewMsg_VisitedLink_Reset) 237 IPC_MESSAGE_CONTROL0(ViewMsg_VisitedLink_Reset)
238 238
239 // Notification that the user scripts have been updated. It has one 239 // Notification that the user scripts have been updated. It has one
240 // SharedMemoryHandle argument consisting of the pickled script data. This 240 // SharedMemoryHandle argument consisting of the pickled script data. This
241 // handle is valid in the context of the renderer. 241 // handle is valid in the context of the renderer.
242 IPC_MESSAGE_CONTROL1(ViewMsg_UserScripts_UpdatedScripts, 242 IPC_MESSAGE_CONTROL2(ViewMsg_UserScripts_UpdatedScripts,
243 base::SharedMemoryHandle) 243 base::SharedMemoryHandle,
244 bool /* only_inject_incognito */)
244 245
245 // Sent when the user wants to search for a word on the page (find in page). 246 // Sent when the user wants to search for a word on the page (find in page).
246 IPC_MESSAGE_ROUTED3(ViewMsg_Find, 247 IPC_MESSAGE_ROUTED3(ViewMsg_Find,
247 int /* request_id */, 248 int /* request_id */,
248 string16 /* search_text */, 249 string16 /* search_text */,
249 WebKit::WebFindOptions) 250 WebKit::WebFindOptions)
250 251
251 // Send from the renderer to the browser to return the script running result. 252 // Send from the renderer to the browser to return the script running result.
252 IPC_MESSAGE_ROUTED2(ViewMsg_ExecuteCodeFinished, 253 IPC_MESSAGE_ROUTED2(ViewMsg_ExecuteCodeFinished,
253 int, /* request id */ 254 int, /* request id */
(...skipping 1850 matching lines...) Expand 10 before | Expand all | Expand 10 after
2104 ViewHostMsg_SpellChecker_PlatformFillSuggestionList, 2105 ViewHostMsg_SpellChecker_PlatformFillSuggestionList,
2105 string16 /* word */, 2106 string16 /* word */,
2106 std::vector<string16> /* suggestions */) 2107 std::vector<string16> /* suggestions */)
2107 2108
2108 // Request for text translation. 2109 // Request for text translation.
2109 // Used when translating a page from one language to another. 2110 // Used when translating a page from one language to another.
2110 IPC_MESSAGE_CONTROL1(ViewHostMsg_TranslateText, 2111 IPC_MESSAGE_CONTROL1(ViewHostMsg_TranslateText,
2111 ViewHostMsg_TranslateTextParam) 2112 ViewHostMsg_TranslateTextParam)
2112 2113
2113 IPC_END_MESSAGES(ViewHost) 2114 IPC_END_MESSAGES(ViewHost)
OLDNEW
« no previous file with comments | « chrome/common/extensions/user_script.cc ('k') | chrome/renderer/render_thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698