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

Unified Diff: content/common/child_thread.cc

Issue 9368053: Move indexed db files from content/renderer to content/common. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: move include from child_thread.h to child_thread.cc Created 8 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: content/common/child_thread.cc
diff --git a/content/common/child_thread.cc b/content/common/child_thread.cc
index 9152a447e2db70c07776b06cdee9f5c92ece54ff..4f0267844fbc7e5f7e42aa9affba446c8fa16a29 100644
--- a/content/common/child_thread.cc
+++ b/content/common/child_thread.cc
@@ -22,6 +22,7 @@
#include "ipc/ipc_sync_channel.h"
#include "ipc/ipc_sync_message_filter.h"
#include "ipc/ipc_switches.h"
+#include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
jam 2012/02/11 02:32:07 nit: not needed
dgrogan 2012/02/11 03:03:26 Done.
#include "webkit/glue/webkit_glue.h"
#if defined(OS_WIN)
@@ -252,6 +253,11 @@ ChildThread* ChildThread::current() {
return ChildProcess::current()->main_thread();
}
+bool ChildThread::IsWebFrameValid(WebKit::WebFrame* frame) {
+ // Return false so that it is overridden in any process in which it is used.
+ return false;
+}
+
void ChildThread::OnProcessFinalRelease() {
if (on_channel_error_called_) {
MessageLoop::current()->Quit();

Powered by Google App Engine
This is Rietveld 408576698