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

Side by Side Diff: content/browser/tab_contents/tab_contents_delegate.cc

Issue 6537015: Start moving core pieces of Chrome multi-process code to src\content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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 unified diff | Download patch | Annotate | Revision Log
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 "chrome/browser/tab_contents/tab_contents_delegate.h" 5 #include "content/browser/tab_contents/tab_contents_delegate.h"
6 6
7 #include "chrome/common/url_constants.h" 7 #include "chrome/common/url_constants.h"
8 #include "ui/gfx/rect.h" 8 #include "ui/gfx/rect.h"
9 9
10 std::string TabContentsDelegate::GetNavigationHeaders(const GURL& url) { 10 std::string TabContentsDelegate::GetNavigationHeaders(const GURL& url) {
11 return std::string(); 11 return std::string();
12 } 12 }
13 13
14 void TabContentsDelegate::LoadProgressChanged(double progress) { 14 void TabContentsDelegate::LoadProgressChanged(double progress) {
15 } 15 }
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 bool result) { 213 bool result) {
214 } 214 }
215 215
216 void TabContentsDelegate::ContentRestrictionsChanged(TabContents* source) { 216 void TabContentsDelegate::ContentRestrictionsChanged(TabContents* source) {
217 } 217 }
218 218
219 bool TabContentsDelegate::ShouldShowHungRendererDialog() { 219 bool TabContentsDelegate::ShouldShowHungRendererDialog() {
220 return true; 220 return true;
221 } 221 }
222 222
223 void TabContentsDelegate::WorkerCrashed() {
224 }
225
223 TabContentsDelegate::~TabContentsDelegate() { 226 TabContentsDelegate::~TabContentsDelegate() {
224 } 227 }
OLDNEW
« no previous file with comments | « content/browser/tab_contents/tab_contents_delegate.h ('k') | content/browser/tab_contents/tab_contents_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698