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

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: Fixed min/max bug Created 7 years, 6 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/strings/string16.h" 10 #include "base/strings/string16.h"
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 IPC_STRUCT_END() 362 IPC_STRUCT_END()
363 363
364 IPC_STRUCT_BEGIN(ViewHostMsg_DateTimeDialogValue_Params) 364 IPC_STRUCT_BEGIN(ViewHostMsg_DateTimeDialogValue_Params)
365 IPC_STRUCT_MEMBER(int, dialog_type) 365 IPC_STRUCT_MEMBER(int, dialog_type)
366 IPC_STRUCT_MEMBER(int, year) 366 IPC_STRUCT_MEMBER(int, year)
367 IPC_STRUCT_MEMBER(int, month) 367 IPC_STRUCT_MEMBER(int, month)
368 IPC_STRUCT_MEMBER(int, day) 368 IPC_STRUCT_MEMBER(int, day)
369 IPC_STRUCT_MEMBER(int, hour) 369 IPC_STRUCT_MEMBER(int, hour)
370 IPC_STRUCT_MEMBER(int, minute) 370 IPC_STRUCT_MEMBER(int, minute)
371 IPC_STRUCT_MEMBER(int, second) 371 IPC_STRUCT_MEMBER(int, second)
372 IPC_STRUCT_MEMBER(int, week)
372 IPC_STRUCT_MEMBER(double, minimum) 373 IPC_STRUCT_MEMBER(double, minimum)
373 IPC_STRUCT_MEMBER(double, maximum) 374 IPC_STRUCT_MEMBER(double, maximum)
374 IPC_STRUCT_END() 375 IPC_STRUCT_END()
375 376
376 IPC_STRUCT_BEGIN(ViewHostMsg_DidFailProvisionalLoadWithError_Params) 377 IPC_STRUCT_BEGIN(ViewHostMsg_DidFailProvisionalLoadWithError_Params)
377 // The frame ID for the failure report. 378 // The frame ID for the failure report.
378 IPC_STRUCT_MEMBER(int64, frame_id) 379 IPC_STRUCT_MEMBER(int64, frame_id)
379 // True if this is the top-most frame. 380 // True if this is the top-most frame.
380 IPC_STRUCT_MEMBER(bool, is_main_frame) 381 IPC_STRUCT_MEMBER(bool, is_main_frame)
381 // Error code as reported in the DidFailProvisionalLoad callback. 382 // Error code as reported in the DidFailProvisionalLoad callback.
(...skipping 1928 matching lines...) Expand 10 before | Expand all | Expand 10 after
2310 // Since the browser keeps handles to the allocated transport DIBs, this 2311 // Since the browser keeps handles to the allocated transport DIBs, this
2311 // message is sent to tell the browser that it may release them when the 2312 // message is sent to tell the browser that it may release them when the
2312 // renderer is finished with them. 2313 // renderer is finished with them.
2313 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, 2314 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB,
2314 TransportDIB::Id /* DIB id */) 2315 TransportDIB::Id /* DIB id */)
2315 #endif 2316 #endif
2316 2317
2317 // Adding a new message? Stick to the sort order above: first platform 2318 // Adding a new message? Stick to the sort order above: first platform
2318 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform 2319 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform
2319 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. 2320 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg.
OLDNEW
« no previous file with comments | « content/browser/web_contents/web_contents_impl.cc ('k') | content/public/android/java/res/layout/month_picker.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698