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

Side by Side Diff: content/renderer/render_process_observer.cc

Issue 6765011: Move the dispatching of extension messages out of RenderThread. This also moves a bunch of exten... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 8 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 | « content/renderer/render_process_observer.h ('k') | content/renderer/render_view.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 #include "content/renderer/render_process_observer.h" 5 #include "content/renderer/render_process_observer.h"
6 6
7 RenderProcessObserver::RenderProcessObserver() {
8 }
9
7 RenderProcessObserver::~RenderProcessObserver() { 10 RenderProcessObserver::~RenderProcessObserver() {
8 } 11 }
9 12
10 bool RenderProcessObserver::OnControlMessageReceived( 13 bool RenderProcessObserver::OnControlMessageReceived(
11 const IPC::Message& message) { 14 const IPC::Message& message) {
12 return false; 15 return false;
13 } 16 }
14 17
15 void RenderProcessObserver::OnRenderProcessShutdown() { 18 void RenderProcessObserver::OnRenderProcessShutdown() {
16 } 19 }
20
21 void RenderProcessObserver::WebKitInitialized() {
22 }
23
24 bool RenderProcessObserver::AllowScriptExtension(
25 const std::string& v8_extension_name,
26 const GURL& url,
27 int extension_group) {
28 return false;
29 }
30
31 void RenderProcessObserver::IdleNotification() {
32 }
OLDNEW
« no previous file with comments | « content/renderer/render_process_observer.h ('k') | content/renderer/render_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698