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

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

Issue 10804026: Fix open dialog not remembering last opened folder on drive (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 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) 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 "content/common/content_export.h" 10 #include "content/common/content_export.h"
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 IPC_STRUCT_TRAITS_END() 354 IPC_STRUCT_TRAITS_END()
355 355
356 IPC_STRUCT_TRAITS_BEGIN(media::MediaLogEvent) 356 IPC_STRUCT_TRAITS_BEGIN(media::MediaLogEvent)
357 IPC_STRUCT_TRAITS_MEMBER(id) 357 IPC_STRUCT_TRAITS_MEMBER(id)
358 IPC_STRUCT_TRAITS_MEMBER(type) 358 IPC_STRUCT_TRAITS_MEMBER(type)
359 IPC_STRUCT_TRAITS_MEMBER(params) 359 IPC_STRUCT_TRAITS_MEMBER(params)
360 IPC_STRUCT_TRAITS_MEMBER(time) 360 IPC_STRUCT_TRAITS_MEMBER(time)
361 IPC_STRUCT_TRAITS_END() 361 IPC_STRUCT_TRAITS_END()
362 362
363 IPC_STRUCT_TRAITS_BEGIN(ui::SelectedFileInfo) 363 IPC_STRUCT_TRAITS_BEGIN(ui::SelectedFileInfo)
364 IPC_STRUCT_TRAITS_MEMBER(path) 364 IPC_STRUCT_TRAITS_MEMBER(file_path)
365 IPC_STRUCT_TRAITS_MEMBER(local_path)
365 IPC_STRUCT_TRAITS_MEMBER(display_name) 366 IPC_STRUCT_TRAITS_MEMBER(display_name)
366 IPC_STRUCT_TRAITS_END() 367 IPC_STRUCT_TRAITS_END()
367 368
368 #if defined(OS_ANDROID) 369 #if defined(OS_ANDROID)
369 IPC_STRUCT_TRAITS_BEGIN(webkit_media::MediaMetadataAndroid) 370 IPC_STRUCT_TRAITS_BEGIN(webkit_media::MediaMetadataAndroid)
370 IPC_STRUCT_TRAITS_MEMBER(width) 371 IPC_STRUCT_TRAITS_MEMBER(width)
371 IPC_STRUCT_TRAITS_MEMBER(height) 372 IPC_STRUCT_TRAITS_MEMBER(height)
372 IPC_STRUCT_TRAITS_MEMBER(duration) 373 IPC_STRUCT_TRAITS_MEMBER(duration)
373 IPC_STRUCT_TRAITS_MEMBER(current_time) 374 IPC_STRUCT_TRAITS_MEMBER(current_time)
374 IPC_STRUCT_TRAITS_MEMBER(paused) 375 IPC_STRUCT_TRAITS_MEMBER(paused)
(...skipping 1791 matching lines...) Expand 10 before | Expand all | Expand 10 after
2166 // (according to the value of is_hung). The browser can give the user the 2167 // (according to the value of is_hung). The browser can give the user the
2167 // option of killing the plugin. 2168 // option of killing the plugin.
2168 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, 2169 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung,
2169 int /* plugin_child_id */, 2170 int /* plugin_child_id */,
2170 FilePath /* path */, 2171 FilePath /* path */,
2171 bool /* is_hung */) 2172 bool /* is_hung */)
2172 2173
2173 // Screen was rotated. Dispatched to the onorientationchange javascript API. 2174 // Screen was rotated. Dispatched to the onorientationchange javascript API.
2174 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, 2175 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent,
2175 int /* orientation */) 2176 int /* orientation */)
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_view_host_impl.cc ('k') | content/renderer/pepper/pepper_file_chooser_host_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698