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

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

Issue 3312017: Plumbs through window.chrome.setSuggestResult. (Closed)
Patch Set: more comments Created 10 years, 3 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
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 "chrome/browser/tab_contents/tab_contents_delegate.h"
6 6
7 #include "gfx/rect.h" 7 #include "gfx/rect.h"
8 8
9 void TabContentsDelegate::DetachContents(TabContents* source) { 9 void TabContentsDelegate::DetachContents(TabContents* source) {
10 } 10 }
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 161
162 void TabContentsDelegate::UpdatePreferredSize(const gfx::Size& pref_size) { 162 void TabContentsDelegate::UpdatePreferredSize(const gfx::Size& pref_size) {
163 } 163 }
164 164
165 void TabContentsDelegate::ContentTypeChanged(TabContents* source) { 165 void TabContentsDelegate::ContentTypeChanged(TabContents* source) {
166 } 166 }
167 167
168 void TabContentsDelegate::CommitMatchPreview(TabContents* source) { 168 void TabContentsDelegate::CommitMatchPreview(TabContents* source) {
169 } 169 }
170 170
171 void TabContentsDelegate::OnSetSuggestResult(int32 page_id,
172 const std::string& result) {
173 }
174
171 TabContentsDelegate::~TabContentsDelegate() { 175 TabContentsDelegate::~TabContentsDelegate() {
172 } 176 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698