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

Side by Side Diff: content/browser/devtools/worker_devtools_message_filter.h

Issue 411283002: Remove disable-embedded-shared-worker flag and shared worker process related codes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 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
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_BROWSER_DEVTOOLS_WORKER_DEVTOOLS_MESSAGE_FILTER_H_
6 #define CONTENT_BROWSER_DEVTOOLS_WORKER_DEVTOOLS_MESSAGE_FILTER_H_
7
8 #include "base/callback_forward.h"
9 #include "content/public/browser/browser_message_filter.h"
10
11 namespace content {
12
13 class WorkerDevToolsMessageFilter : public BrowserMessageFilter {
14 public:
15 explicit WorkerDevToolsMessageFilter(int worker_process_host_id);
16
17 private:
18 virtual ~WorkerDevToolsMessageFilter();
19
20 // BrowserMessageFilter implementation.
21 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
22 // Message handlers.
23 void OnDispatchOnInspectorFrontend(const std::string& message);
24 void OnSaveAgentRumtimeState(const std::string& state);
25
26 int worker_process_host_id_;
27 int current_routing_id_;
28
29 DISALLOW_COPY_AND_ASSIGN(WorkerDevToolsMessageFilter);
30 };
31
32 } // namespace content
33
34 #endif // CONTENT_BROWSER_DEVTOOLS_WORKER_DEVTOOLS_MESSAGE_FILTER_H_
OLDNEW
« no previous file with comments | « content/browser/devtools/worker_devtools_manager.cc ('k') | content/browser/devtools/worker_devtools_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698