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

Unified Diff: trunk/src/content/browser/message_port_message_filter.h

Issue 195723003: Revert 256305 "Add SharedWorkerServiceImpl::CheckWorkerDependenc..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 9 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 | « no previous file | trunk/src/content/browser/shared_worker/shared_worker_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/content/browser/message_port_message_filter.h
===================================================================
--- trunk/src/content/browser/message_port_message_filter.h (revision 256322)
+++ trunk/src/content/browser/message_port_message_filter.h (working copy)
@@ -6,14 +6,13 @@
#define CONTENT_BROWSER_MESSAGE_PORT_MESSAGE_FILTER_H_
#include "base/callback.h"
-#include "content/common/content_export.h"
#include "content/public/browser/browser_message_filter.h"
namespace content {
// Filter for MessagePort related IPC messages (creating and destroying a
// MessagePort, sending a message via a MessagePort etc).
-class CONTENT_EXPORT MessagePortMessageFilter : public BrowserMessageFilter {
+class MessagePortMessageFilter : public BrowserMessageFilter {
public:
typedef base::Callback<int(void)> NextRoutingIDCallback;
@@ -29,14 +28,12 @@
int GetNextRoutingID();
- protected:
- // This is protected, so we can define sub classes for testing.
- virtual ~MessagePortMessageFilter();
-
private:
friend class BrowserThread;
friend class base::DeleteHelper<MessagePortMessageFilter>;
+ virtual ~MessagePortMessageFilter();
+
// Message handlers.
void OnCreateMessagePort(int* route_id, int* message_port_id);
« no previous file with comments | « no previous file | trunk/src/content/browser/shared_worker/shared_worker_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698