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

Unified Diff: chrome/renderer/render_thread.h

Issue 18622: POSIX: Porting renderer/render_process.cc, low hanging fruit (Closed)
Patch Set: Created 11 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/renderer/render_process.cc ('k') | chrome/renderer/render_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/render_thread.h
diff --git a/chrome/renderer/render_thread.h b/chrome/renderer/render_thread.h
index 7884e9f388ccc90602c8dbb86c9a8bc869123f4d..5a2e80a8010fce04b458d0415c9271bfcdd9bd41 100644
--- a/chrome/renderer/render_thread.h
+++ b/chrome/renderer/render_thread.h
@@ -10,6 +10,7 @@
#include "base/shared_memory.h"
#include "base/task.h"
#include "base/thread.h"
+#include "build/build_config.h"
#include "chrome/common/ipc_sync_channel.h"
#include "chrome/common/message_router.h"
@@ -101,10 +102,14 @@ class RenderThread : public IPC::Channel::Listener,
void OnPluginMessage(const FilePath& plugin_path,
const std::vector<uint8>& data);
void OnSetNextPageID(int32 next_page_id);
+#if defined(OS_WIN)
+ // TODO(port): we'll need to support that at some point, but it's not clear
+ // if we'll be using the same sort of messages for setting this up
void OnCreateNewView(HWND parent_hwnd,
HANDLE modal_dialog_event,
const WebPreferences& webkit_prefs,
int32 view_id);
+#endif
void OnTransferBitmap(const SkBitmap& bitmap, int resource_id);
void OnSetCacheCapacities(size_t min_dead_capacity,
size_t max_dead_capacity,
« no previous file with comments | « chrome/renderer/render_process.cc ('k') | chrome/renderer/render_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698