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

Unified Diff: content/public/browser/web_contents_delegate.h

Issue 11824050: InstantExtended: Committed NTP (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Undo to fix blacklisting. Created 7 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/browser/web_contents/web_contents_impl.cc ('k') | content/public/browser/web_contents_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/web_contents_delegate.h
diff --git a/content/public/browser/web_contents_delegate.h b/content/public/browser/web_contents_delegate.h
index 63e6380a7caa746ecca29f1bbed9f62ad4256222..93433d98ce1c0d9fc36076e344e56b70f8b756ce 100644
--- a/content/public/browser/web_contents_delegate.h
+++ b/content/public/browser/web_contents_delegate.h
@@ -178,7 +178,7 @@ class CONTENT_EXPORT WebContentsDelegate {
// Add a message to the console. Returning true indicates that the delegate
// handled the message. If false is returned the default logging mechanism
// will be used for the message.
- virtual bool AddMessageToConsole(WebContents* soruce,
+ virtual bool AddMessageToConsole(WebContents* source,
int32 level,
const string16& message,
int32 line_no,
@@ -193,6 +193,10 @@ class CONTENT_EXPORT WebContentsDelegate {
bool proceed,
bool* proceed_to_fire_unload);
+ // Returns true if the location bar should be focused by default rather than
+ // the page contents.
+ virtual bool ShouldFocusLocationBarByDefault(WebContents* source);
+
// Sets focus to the location bar or some other place that is appropriate.
// This is called when the tab wants to encourage user input, like for the
// new tab page.
@@ -210,7 +214,7 @@ class CONTENT_EXPORT WebContentsDelegate {
// This is called when WebKit tells us that it is done tabbing through
// controls on the page. Provides a way for WebContentsDelegates to handle
// this. Returns true if the delegate successfully handled it.
- virtual bool TakeFocus(WebContents* soruce,
+ virtual bool TakeFocus(WebContents* source,
bool reverse);
// Invoked when the page loses mouse capture.
« no previous file with comments | « content/browser/web_contents/web_contents_impl.cc ('k') | content/public/browser/web_contents_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698