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

Side by Side Diff: ios/chrome/browser/tabs/tab.h

Issue 2772723006: Do not suppress HTTP Authenticaiton in WebController. (Closed)
Patch Set: Self review Created 3 years, 9 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
« no previous file with comments | « no previous file | ios/chrome/browser/ui/browser_view_controller.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 #ifndef IOS_CHROME_BROWSER_TABS_TAB_H_ 5 #ifndef IOS_CHROME_BROWSER_TABS_TAB_H_
6 #define IOS_CHROME_BROWSER_TABS_TAB_H_ 6 #define IOS_CHROME_BROWSER_TABS_TAB_H_
7 7
8 #import <UIKit/UIKit.h> 8 #import <UIKit/UIKit.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 342
343 // Called when this tab is shown. 343 // Called when this tab is shown.
344 - (void)wasShown; 344 - (void)wasShown;
345 345
346 // Called when this tab is hidden. 346 // Called when this tab is hidden.
347 - (void)wasHidden; 347 - (void)wasHidden;
348 348
349 // Evaluates U2F result. 349 // Evaluates U2F result.
350 - (void)evaluateU2FResultFromURL:(const GURL&)url; 350 - (void)evaluateU2FResultFromURL:(const GURL&)url;
351 351
352 // Cancels prerendering. Can be called only for prerender tabs (where
marq (ping after 24h) 2017/03/27 13:00:13 Can you clarify how the 'can only be called for pr
Eugene But (OOO till 7-30) 2017/03/27 16:46:50 It is enforced via DCHECK like in other invariant
marq (ping after 24h) 2017/03/27 17:04:30 I was mostly looking for a clearer statement in th
Eugene But (OOO till 7-30) 2017/03/27 17:19:07 Thanks for clarification. Done.
353 // |isPrerenderTab| is set to YES).
354 - (void)discardPrerender;
355
352 @end 356 @end
353 357
354 #endif // IOS_CHROME_BROWSER_TABS_TAB_H_ 358 #endif // IOS_CHROME_BROWSER_TABS_TAB_H_
OLDNEW
« no previous file with comments | « no previous file | ios/chrome/browser/ui/browser_view_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698