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

Side by Side Diff: ppapi/nacl_irt/ppapi_dispatcher.h

Issue 1216013005: Fixed all overloaded virtual methods on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Finish fixes. Created 5 years, 5 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
« no previous file with comments | « content/ppapi_plugin/ppapi_thread.cc ('k') | ppapi/nacl_irt/ppapi_dispatcher.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_NACL_IRT_PPAPI_DISPATCHER_H_ 5 #ifndef PPAPI_NACL_IRT_PPAPI_DISPATCHER_H_
6 #define PPAPI_NACL_IRT_PPAPI_DISPATCHER_H_ 6 #define PPAPI_NACL_IRT_PPAPI_DISPATCHER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 base::SharedMemoryHandle ShareSharedMemoryHandleWithRemote( 61 base::SharedMemoryHandle ShareSharedMemoryHandleWithRemote(
62 const base::SharedMemoryHandle& handle, 62 const base::SharedMemoryHandle& handle,
63 base::ProcessId remote_pid) override; 63 base::ProcessId remote_pid) override;
64 std::set<PP_Instance>* GetGloballySeenInstanceIDSet() override; 64 std::set<PP_Instance>* GetGloballySeenInstanceIDSet() override;
65 uint32 Register(proxy::PluginDispatcher* plugin_dispatcher) override; 65 uint32 Register(proxy::PluginDispatcher* plugin_dispatcher) override;
66 void Unregister(uint32 plugin_dispatcher_id) override; 66 void Unregister(uint32 plugin_dispatcher_id) override;
67 67
68 // PluginProxyDelegate implementation. 68 // PluginProxyDelegate implementation.
69 IPC::Sender* GetBrowserSender() override; 69 IPC::Sender* GetBrowserSender() override;
70 std::string GetUILanguage() override; 70 std::string GetUILanguage() override;
71 void PreCacheFont(const void* logfontw) override; 71 void PreCacheFontForFlash(const void* logfontw) override;
72 void SetActiveURL(const std::string& url) override; 72 void SetActiveURL(const std::string& url) override;
73 PP_Resource CreateBrowserFont(proxy::Connection connection, 73 PP_Resource CreateBrowserFont(proxy::Connection connection,
74 PP_Instance instance, 74 PP_Instance instance,
75 const PP_BrowserFont_Trusted_Description& desc, 75 const PP_BrowserFont_Trusted_Description& desc,
76 const Preferences& prefs) override; 76 const Preferences& prefs) override;
77 77
78 // IPC::Listener implementation. 78 // IPC::Listener implementation.
79 bool OnMessageReceived(const IPC::Message& message) override; 79 bool OnMessageReceived(const IPC::Message& message) override;
80 void OnChannelError() override; 80 void OnChannelError() override;
81 81
(...skipping 10 matching lines...) Expand all
92 92
93 scoped_refptr<base::SingleThreadTaskRunner> task_runner_; 93 scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
94 base::WaitableEvent* shutdown_event_; 94 base::WaitableEvent* shutdown_event_;
95 int renderer_ipc_fd_; 95 int renderer_ipc_fd_;
96 scoped_ptr<IPC::SyncChannel> channel_; 96 scoped_ptr<IPC::SyncChannel> channel_;
97 }; 97 };
98 98
99 } // namespace ppapi 99 } // namespace ppapi
100 100
101 #endif // PPAPI_NACL_IRT_PPAPI_DISPATCHER_H_ 101 #endif // PPAPI_NACL_IRT_PPAPI_DISPATCHER_H_
OLDNEW
« no previous file with comments | « content/ppapi_plugin/ppapi_thread.cc ('k') | ppapi/nacl_irt/ppapi_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698