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

Side by Side Diff: content/browser/renderer_host/browser_render_process_host.h

Issue 6927014: Avoid exiting the renderer process if it has a pending render view. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More feedback. Created 9 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | content/browser/renderer_host/browser_render_process_host.cc » ('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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <queue> 10 #include <queue>
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 // ChildProcessLauncher::Client implementation. 74 // ChildProcessLauncher::Client implementation.
75 virtual void OnProcessLaunched(); 75 virtual void OnProcessLaunched();
76 76
77 private: 77 private:
78 friend class VisitRelayingRenderProcessHost; 78 friend class VisitRelayingRenderProcessHost;
79 79
80 // Creates and adds the IO thread message filters. 80 // Creates and adds the IO thread message filters.
81 void CreateMessageFilters(); 81 void CreateMessageFilters();
82 82
83 // Control message handlers. 83 // Control message handlers.
84 void OnShutdownRequest();
84 void OnUpdatedCacheStats(const WebKit::WebCache::UsageStats& stats); 85 void OnUpdatedCacheStats(const WebKit::WebCache::UsageStats& stats);
85 void SuddenTerminationChanged(bool enabled); 86 void SuddenTerminationChanged(bool enabled);
86 void OnUserMetricsRecordAction(const std::string& action); 87 void OnUserMetricsRecordAction(const std::string& action);
87 88
88 // Generates a command line to be used to spawn a renderer and appends the 89 // Generates a command line to be used to spawn a renderer and appends the
89 // results to |*command_line|. 90 // results to |*command_line|.
90 void AppendRendererCommandLine(CommandLine* command_line) const; 91 void AppendRendererCommandLine(CommandLine* command_line) const;
91 92
92 // Copies applicable command line switches from the given |browser_cmd| line 93 // Copies applicable command line switches from the given |browser_cmd| line
93 // flags to the output |renderer_cmd| line flags. Not all switches will be 94 // flags to the output |renderer_cmd| line flags. Not all switches will be
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 // Messages we queue while waiting for the process handle. We queue them here 141 // Messages we queue while waiting for the process handle. We queue them here
141 // instead of in the channel so that we ensure they're sent after init related 142 // instead of in the channel so that we ensure they're sent after init related
142 // messages that are sent once the process handle is available. This is 143 // messages that are sent once the process handle is available. This is
143 // because the queued messages may have dependencies on the init messages. 144 // because the queued messages may have dependencies on the init messages.
144 std::queue<IPC::Message*> queued_messages_; 145 std::queue<IPC::Message*> queued_messages_;
145 146
146 DISALLOW_COPY_AND_ASSIGN(BrowserRenderProcessHost); 147 DISALLOW_COPY_AND_ASSIGN(BrowserRenderProcessHost);
147 }; 148 };
148 149
149 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_H_ 150 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/renderer_host/browser_render_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698