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

Unified Diff: ios/chrome/browser/tabs/tab.mm

Issue 2611673002: Moves overscroll code out of the ios_internal namespace. (Closed)
Patch Set: Created 3 years, 12 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 | « no previous file | ios/chrome/browser/ui/browser_view_controller.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/tabs/tab.mm
diff --git a/ios/chrome/browser/tabs/tab.mm b/ios/chrome/browser/tabs/tab.mm
index a0a17d92dd9d19fadf2b3c799dcad2ff89442d64..10a401980a7d5d3e8b4579b901b14ad7849f7b76 100644
--- a/ios/chrome/browser/tabs/tab.mm
+++ b/ios/chrome/browser/tabs/tab.mm
@@ -1015,10 +1015,9 @@ void AddNetworkClientFactoryOnIOThread(
[[OverscrollActionsController alloc] init]);
[self.webController addObserver:overscrollActionsController_];
}
- ios_internal::OverscrollStyle style =
- ios_internal::OverscrollStyle::REGULAR_PAGE_NON_INCOGNITO;
+ OverscrollStyle style = OverscrollStyle::REGULAR_PAGE_NON_INCOGNITO;
if (browserState_->IsOffTheRecord()) {
- style = ios_internal::OverscrollStyle::REGULAR_PAGE_INCOGNITO;
+ style = OverscrollStyle::REGULAR_PAGE_INCOGNITO;
}
[overscrollActionsController_ setStyle:style];
[overscrollActionsController_
« 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