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

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

Issue 2643183002: Convert ChromeViewHostMsg_UpdatedCacheStats to use mojo. (Closed)
Patch Set: Convert ChromeViewHostMsg_UpdatedCacheStats to use mojo. Created 3 years, 8 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 <stdint.h> 6 #include <stdint.h>
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 // Message sent from the renderer to the browser to indicate if download button 190 // Message sent from the renderer to the browser to indicate if download button
191 // is being shown in error page. 191 // is being shown in error page.
192 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SetIsShowingDownloadButtonInErrorPage, 192 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SetIsShowingDownloadButtonInErrorPage,
193 bool /* showing download button */) 193 bool /* showing download button */)
194 #endif // defined(OS_ANDROID) 194 #endif // defined(OS_ANDROID)
195 195
196 //----------------------------------------------------------------------------- 196 //-----------------------------------------------------------------------------
197 // Misc messages 197 // Misc messages
198 // These are messages sent from the renderer to the browser process. 198 // These are messages sent from the renderer to the browser process.
199 199
200 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_UpdatedCacheStats,
201 uint64_t /* capacity */,
202 uint64_t /* size */)
203
204 // Tells the browser that content in the current page was blocked due to the 200 // Tells the browser that content in the current page was blocked due to the
205 // user's content settings. 201 // user's content settings.
206 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_ContentBlocked, 202 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_ContentBlocked,
207 ContentSettingsType /* type of blocked content */, 203 ContentSettingsType /* type of blocked content */,
208 base::string16 /* details on blocked content */) 204 base::string16 /* details on blocked content */)
209 205
210 // Sent by the renderer process to check whether access to web databases is 206 // Sent by the renderer process to check whether access to web databases is
211 // granted by content settings. 207 // granted by content settings.
212 IPC_SYNC_MESSAGE_CONTROL5_1(ChromeViewHostMsg_AllowDatabase, 208 IPC_SYNC_MESSAGE_CONTROL5_1(ChromeViewHostMsg_AllowDatabase,
213 int /* render_frame_id */, 209 int /* render_frame_id */,
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 // process so that they can be assigned to an Instant renderer. 330 // process so that they can be assigned to an Instant renderer.
335 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, 331 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs,
336 std::vector<GURL> /* search_urls */, 332 std::vector<GURL> /* search_urls */,
337 GURL /* new_tab_page_url */) 333 GURL /* new_tab_page_url */)
338 334
339 #if BUILDFLAG(ENABLE_PLUGINS) 335 #if BUILDFLAG(ENABLE_PLUGINS)
340 // Sent by the renderer to check if crash reporting is enabled. 336 // Sent by the renderer to check if crash reporting is enabled.
341 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, 337 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled,
342 bool /* enabled */) 338 bool /* enabled */)
343 #endif 339 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698