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

Side by Side Diff: chrome/browser/ui/webui/constrained_web_dialog_delegate_base.cc

Issue 10837112: Add WebContents* to some more WebContentsDelegate methods (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 8 years, 4 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/ui/webui/constrained_web_dialog_delegate_base.h" 5 #include "chrome/browser/ui/webui/constrained_web_dialog_delegate_base.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/property_bag.h" 9 #include "base/property_bag.h"
10 #include "chrome/browser/profiles/profile.h" 10 #include "chrome/browser/profiles/profile.h"
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 90
91 ConstrainedWindow* ConstrainedWebDialogDelegateBase::window() { 91 ConstrainedWindow* ConstrainedWebDialogDelegateBase::window() {
92 return window_; 92 return window_;
93 } 93 }
94 94
95 TabContents* ConstrainedWebDialogDelegateBase::tab() { 95 TabContents* ConstrainedWebDialogDelegateBase::tab() {
96 return tab_.get(); 96 return tab_.get();
97 } 97 }
98 98
99 void ConstrainedWebDialogDelegateBase::HandleKeyboardEvent( 99 void ConstrainedWebDialogDelegateBase::HandleKeyboardEvent(
100 content::WebContents* source,
100 const NativeWebKeyboardEvent& event) { 101 const NativeWebKeyboardEvent& event) {
101 } 102 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698