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

Side by Side Diff: chrome/browser/worker_host/worker_process_host.cc

Issue 3119035: FBTF: Move individual XXXMsg_Params structs to a new file. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Fix comment Created 10 years, 4 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 | « chrome/browser/utility_process_host.cc ('k') | chrome/chrome_common.gypi » ('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 (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 #include "chrome/browser/worker_host/worker_process_host.h" 5 #include "chrome/browser/worker_host/worker_process_host.h"
6 6
7 #include <set> 7 #include <set>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
(...skipping 10 matching lines...) Expand all
21 #include "chrome/browser/renderer_host/database_dispatcher_host.h" 21 #include "chrome/browser/renderer_host/database_dispatcher_host.h"
22 #include "chrome/browser/renderer_host/render_view_host.h" 22 #include "chrome/browser/renderer_host/render_view_host.h"
23 #include "chrome/browser/renderer_host/render_view_host_delegate.h" 23 #include "chrome/browser/renderer_host/render_view_host_delegate.h"
24 #include "chrome/browser/renderer_host/resource_message_filter.h" 24 #include "chrome/browser/renderer_host/resource_message_filter.h"
25 #include "chrome/browser/worker_host/message_port_dispatcher.h" 25 #include "chrome/browser/worker_host/message_port_dispatcher.h"
26 #include "chrome/browser/worker_host/worker_service.h" 26 #include "chrome/browser/worker_host/worker_service.h"
27 #include "chrome/common/chrome_switches.h" 27 #include "chrome/common/chrome_switches.h"
28 #include "chrome/common/debug_flags.h" 28 #include "chrome/common/debug_flags.h"
29 #include "chrome/common/notification_service.h" 29 #include "chrome/common/notification_service.h"
30 #include "chrome/common/render_messages.h" 30 #include "chrome/common/render_messages.h"
31 #include "chrome/common/render_messages_params.h"
31 #include "chrome/common/result_codes.h" 32 #include "chrome/common/result_codes.h"
32 #include "chrome/common/worker_messages.h" 33 #include "chrome/common/worker_messages.h"
33 #include "ipc/ipc_switches.h" 34 #include "ipc/ipc_switches.h"
34 #include "net/base/registry_controlled_domain.h" 35 #include "net/base/registry_controlled_domain.h"
35 36
36 // Notifies RenderViewHost that one or more worker objects crashed. 37 // Notifies RenderViewHost that one or more worker objects crashed.
37 class WorkerCrashTask : public Task { 38 class WorkerCrashTask : public Task {
38 public: 39 public:
39 WorkerCrashTask(int render_process_unique_id, int render_view_id) 40 WorkerCrashTask(int render_process_unique_id, int render_view_id)
40 : render_process_unique_id_(render_process_unique_id), 41 : render_process_unique_id_(render_process_unique_id),
(...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after
597 } 598 }
598 } 599 }
599 return false; 600 return false;
600 } 601 }
601 602
602 WorkerProcessHost::WorkerInstance::SenderInfo 603 WorkerProcessHost::WorkerInstance::SenderInfo
603 WorkerProcessHost::WorkerInstance::GetSender() const { 604 WorkerProcessHost::WorkerInstance::GetSender() const {
604 DCHECK(NumSenders() == 1); 605 DCHECK(NumSenders() == 1);
605 return *senders_.begin(); 606 return *senders_.begin();
606 } 607 }
OLDNEW
« no previous file with comments | « chrome/browser/utility_process_host.cc ('k') | chrome/chrome_common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698