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

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

Issue 15057004: Week picker for android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed week_year. Added BaseDatePicker. Created 7 years, 7 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) 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 // 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 "base/string16.h" 10 #include "base/string16.h"
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 IPC_STRUCT_END() 353 IPC_STRUCT_END()
354 354
355 IPC_STRUCT_BEGIN(ViewHostMsg_DateTimeDialogValue_Params) 355 IPC_STRUCT_BEGIN(ViewHostMsg_DateTimeDialogValue_Params)
356 IPC_STRUCT_MEMBER(int, dialog_type) 356 IPC_STRUCT_MEMBER(int, dialog_type)
357 IPC_STRUCT_MEMBER(int, year) 357 IPC_STRUCT_MEMBER(int, year)
358 IPC_STRUCT_MEMBER(int, month) 358 IPC_STRUCT_MEMBER(int, month)
359 IPC_STRUCT_MEMBER(int, day) 359 IPC_STRUCT_MEMBER(int, day)
360 IPC_STRUCT_MEMBER(int, hour) 360 IPC_STRUCT_MEMBER(int, hour)
361 IPC_STRUCT_MEMBER(int, minute) 361 IPC_STRUCT_MEMBER(int, minute)
362 IPC_STRUCT_MEMBER(int, second) 362 IPC_STRUCT_MEMBER(int, second)
363 IPC_STRUCT_MEMBER(int, week)
363 IPC_STRUCT_END() 364 IPC_STRUCT_END()
364 365
365 IPC_STRUCT_BEGIN(ViewHostMsg_DidFailProvisionalLoadWithError_Params) 366 IPC_STRUCT_BEGIN(ViewHostMsg_DidFailProvisionalLoadWithError_Params)
366 // The frame ID for the failure report. 367 // The frame ID for the failure report.
367 IPC_STRUCT_MEMBER(int64, frame_id) 368 IPC_STRUCT_MEMBER(int64, frame_id)
368 // True if this is the top-most frame. 369 // True if this is the top-most frame.
369 IPC_STRUCT_MEMBER(bool, is_main_frame) 370 IPC_STRUCT_MEMBER(bool, is_main_frame)
370 // Error code as reported in the DidFailProvisionalLoad callback. 371 // Error code as reported in the DidFailProvisionalLoad callback.
371 IPC_STRUCT_MEMBER(int, error_code) 372 IPC_STRUCT_MEMBER(int, error_code)
372 // An error message generated from the error_code. This can be an empty 373 // An error message generated from the error_code. This can be an empty
(...skipping 1904 matching lines...) Expand 10 before | Expand all | Expand 10 after
2277 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters 2278 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters
2278 // for details. 2279 // for details.
2279 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, 2280 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters,
2280 LOGFONT /* font_data */, 2281 LOGFONT /* font_data */,
2281 string16 /* characters */) 2282 string16 /* characters */)
2282 #endif 2283 #endif
2283 2284
2284 // Adding a new message? Stick to the sort order above: first platform 2285 // Adding a new message? Stick to the sort order above: first platform
2285 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform 2286 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform
2286 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. 2287 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698