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

Unified Diff: content/browser/cert_store.cc

Issue 8515027: Define the public version of the browser side RenderProcessHost interface. This interface is not ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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
Index: content/browser/cert_store.cc
===================================================================
--- content/browser/cert_store.cc (revision 110571)
+++ content/browser/cert_store.cc (working copy)
@@ -8,7 +8,7 @@
#include <functional>
#include "base/stl_util.h"
-#include "content/browser/renderer_host/render_process_host.h"
+#include "content/browser/renderer_host/render_process_host_impl.h"
#include "content/browser/renderer_host/render_view_host.h"
#include "content/public/browser/notification_service.h"
#include "content/public/browser/notification_types.h"
@@ -154,7 +154,8 @@
const content::NotificationDetails& details) {
DCHECK(type == content::NOTIFICATION_RENDERER_PROCESS_TERMINATED ||
type == content::NOTIFICATION_RENDERER_PROCESS_CLOSED);
- RenderProcessHost* rph = content::Source<RenderProcessHost>(source).ptr();
+ content::RenderProcessHost* rph =
+ content::Source<content::RenderProcessHost>(source).ptr();
DCHECK(rph);
- RemoveCertsForRenderProcesHost(rph->id());
+ RemoveCertsForRenderProcesHost(rph->GetID());
}
« no previous file with comments | « chrome_frame/test/net/fake_external_tab.cc ('k') | content/browser/child_process_security_policy_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698