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

Unified Diff: chrome/browser/browser_io_message_filter.h

Issue 5541005: Make BrowserMessageFilter support dispatching messages on different threads. (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/appcache/appcache_dispatcher_host.cc ('k') | chrome/browser/browser_io_message_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_io_message_filter.h
===================================================================
--- chrome/browser/browser_io_message_filter.h (revision 68741)
+++ chrome/browser/browser_io_message_filter.h (working copy)
@@ -1,40 +0,0 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_BROWSER_BROWSER_IO_MESSAGE_FILTER_H_
-#define CHROME_BROWSER_BROWSER_IO_MESSAGE_FILTER_H_
-#pragma once
-
-#include "base/process.h"
-#include "ipc/ipc_channel_proxy.h"
-
-// Base class for message filters in the browser process that reside on the IO
-// thread.
-class BrowserIOMessageFilter : public IPC::ChannelProxy::MessageFilter,
- public IPC::Message::Sender {
- public:
- BrowserIOMessageFilter();
- virtual ~BrowserIOMessageFilter();
-
- // IPC::ChannelProxy::MessageFilter methods. If you override them, make sure
- // to call them as well.
- virtual void OnFilterAdded(IPC::Channel* channel);
- virtual void OnChannelClosing();
- virtual void OnChannelConnected(int32 peer_pid);
-
- // IPC::Message::Sender implementation:
- virtual bool Send(IPC::Message* msg);
-
- protected:
- base::ProcessHandle peer_handle() { return peer_handle_; }
-
- // Call this if a message couldn't be deserialized. This kills the renderer.
- void BadMessageReceived(uint32 msg_type);
-
- private:
- IPC::Channel* channel_;
- base::ProcessHandle peer_handle_;
-};
-
-#endif // CHROME_BROWSER_BROWSER_IO_MESSAGE_FILTER_H_
« no previous file with comments | « chrome/browser/appcache/appcache_dispatcher_host.cc ('k') | chrome/browser/browser_io_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698