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

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

Issue 6854035: Move blocked content from TabContents to TabContentsWrapper. (Closed) Base URL: svn://svn.chromium.org/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
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/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) {
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 void TabContentsDelegate::HandleMouseActivate() { 164 void TabContentsDelegate::HandleMouseActivate() {
165 } 165 }
166 166
167 void TabContentsDelegate::DragEnded() { 167 void TabContentsDelegate::DragEnded() {
168 } 168 }
169 169
170 void TabContentsDelegate::ShowRepostFormWarningDialog( 170 void TabContentsDelegate::ShowRepostFormWarningDialog(
171 TabContents* tab_contents) { 171 TabContents* tab_contents) {
172 } 172 }
173 173
174 void TabContentsDelegate::ShowContentSettingsPage(
175 ContentSettingsType content_type) {
176 }
177
178 void TabContentsDelegate::ShowCollectedCookiesDialog(
179 TabContents* tab_contents) {
180 }
181
182 bool TabContentsDelegate::OnGoToEntryOffset(int offset) { 174 bool TabContentsDelegate::OnGoToEntryOffset(int offset) {
183 return true; 175 return true;
184 } 176 }
185 177
186 bool TabContentsDelegate::ShouldAddNavigationToHistory( 178 bool TabContentsDelegate::ShouldAddNavigationToHistory(
187 const history::HistoryAddPageArgs& add_page_args, 179 const history::HistoryAddPageArgs& add_page_args,
188 NavigationType::Type navigation_type) { 180 NavigationType::Type navigation_type) {
189 return true; 181 return true;
190 } 182 }
191 183
(...skipping 20 matching lines...) Expand all
212 204
213 bool TabContentsDelegate::ShouldShowHungRendererDialog() { 205 bool TabContentsDelegate::ShouldShowHungRendererDialog() {
214 return true; 206 return true;
215 } 207 }
216 208
217 void TabContentsDelegate::WorkerCrashed() { 209 void TabContentsDelegate::WorkerCrashed() {
218 } 210 }
219 211
220 TabContentsDelegate::~TabContentsDelegate() { 212 TabContentsDelegate::~TabContentsDelegate() {
221 } 213 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698