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

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

Issue 5828003: Move the Pepper implementation from webkit/glue/plugins/pepper_* to... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years 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) 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 #include <map> 5 #include <map>
6 #include <string> 6 #include <string>
7 #include <vector> 7 #include <vector>
8 8
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 10
(...skipping 2655 matching lines...) Expand 10 before | Expand all | Expand 10 after
2666 2666
2667 // Query the file's info. 2667 // Query the file's info.
2668 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperQueryFile, 2668 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperQueryFile,
2669 FilePath /* path */, 2669 FilePath /* path */,
2670 base::PlatformFileInfo, /* info */ 2670 base::PlatformFileInfo, /* info */
2671 base::PlatformFileError /* error_code */) 2671 base::PlatformFileError /* error_code */)
2672 2672
2673 // Get the directory's contents. 2673 // Get the directory's contents.
2674 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperGetDirContents, 2674 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperGetDirContents,
2675 FilePath /* path */, 2675 FilePath /* path */,
2676 PepperDirContents, /* contents */ 2676 webkit::plugins::ppapi::DirContents, /* contents */
2677 base::PlatformFileError /* error_code */) 2677 base::PlatformFileError /* error_code */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698