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

Side by Side Diff: ppapi/proxy/ppb_flash_proxy.h

Issue 6432001: Implement proxy for FlashMenu and Run/QuitMessageLoop (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Handle NULL menus more gracefully Created 9 years, 10 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
« no previous file with comments | « ppapi/proxy/ppb_flash_menu_proxy.cc ('k') | ppapi/proxy/ppb_flash_proxy.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #ifndef PPAPI_PPB_FLASH_PROXY_H_ 5 #ifndef PPAPI_PPB_FLASH_PROXY_H_
6 #define PPAPI_PPB_FLASH_PROXY_H_ 6 #define PPAPI_PPB_FLASH_PROXY_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "ipc/ipc_platform_file.h" 10 #include "ipc/ipc_platform_file.h"
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 int32_t* result); 68 int32_t* result);
69 void OnMsgGetModuleLocalDirContents( 69 void OnMsgGetModuleLocalDirContents(
70 PP_Instance instance, 70 PP_Instance instance,
71 const std::string& path, 71 const std::string& path,
72 std::vector<pp::proxy::SerializedDirEntry>* entries, 72 std::vector<pp::proxy::SerializedDirEntry>* entries,
73 int32_t* result); 73 int32_t* result);
74 void OnMsgNavigateToURL(PP_Instance instance, 74 void OnMsgNavigateToURL(PP_Instance instance,
75 const std::string& url, 75 const std::string& url,
76 const std::string& target, 76 const std::string& target,
77 PP_Bool* result); 77 PP_Bool* result);
78 void OnMsgRunMessageLoop(PP_Instance instance);
79 void OnMsgQuitMessageLoop(PP_Instance instance);
78 }; 80 };
79 81
80 } // namespace proxy 82 } // namespace proxy
81 } // namespace pp 83 } // namespace pp
82 84
83 #endif // PPAPI_PPB_FLASH_PROXY_H_ 85 #endif // PPAPI_PPB_FLASH_PROXY_H_
OLDNEW
« no previous file with comments | « ppapi/proxy/ppb_flash_menu_proxy.cc ('k') | ppapi/proxy/ppb_flash_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698