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

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: remove unneccesary include 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
« no previous file with comments | « content/common/child_thread.h ('k') | content/common/indexed_db/indexed_db_dispatcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/child_thread.cc
diff --git a/content/common/child_thread.cc b/content/common/child_thread.cc
index 9152a447e2db70c07776b06cdee9f5c92ece54ff..be8866ced3e5400cd9dd4fd54a726141cf7c3593 100644
--- a/content/common/child_thread.cc
+++ b/content/common/child_thread.cc
@@ -252,6 +252,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();
« no previous file with comments | « content/common/child_thread.h ('k') | content/common/indexed_db/indexed_db_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698