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

Side by Side Diff: ios/chrome/browser/infobars/infobar_container_ios.mm

Issue 1544743002: Switch to standard integer types in ios/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 unified diff | Download patch
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 #include "ios/chrome/browser/infobars/infobar_container_ios.h" 5 #include "ios/chrome/browser/infobars/infobar_container_ios.h"
6 6
7 #include <stddef.h>
7 #import <UIKit/UIKit.h> 8 #import <UIKit/UIKit.h>
8 9
9 #include "base/logging.h" 10 #include "base/logging.h"
10 #include "base/message_loop/message_loop.h" 11 #include "base/message_loop/message_loop.h"
11 #include "ios/chrome/browser/infobars/infobar.h" 12 #include "ios/chrome/browser/infobars/infobar.h"
12 #include "ios/chrome/browser/infobars/infobar_container_view.h" 13 #include "ios/chrome/browser/infobars/infobar_container_view.h"
13 #include "ios/public/provider/chrome/browser/chrome_browser_provider.h" 14 #include "ios/public/provider/chrome/browser/chrome_browser_provider.h"
14 15
15 InfoBarContainerIOS::InfoBarContainerIOS( 16 InfoBarContainerIOS::InfoBarContainerIOS(
16 infobars::InfoBarContainer::Delegate* delegate) 17 infobars::InfoBarContainer::Delegate* delegate)
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 63
63 void InfoBarContainerIOS::SuspendInfobars() { 64 void InfoBarContainerIOS::SuspendInfobars() {
64 ios::GetChromeBrowserProvider()->SetUIViewAlphaWithAnimation(container_view_, 65 ios::GetChromeBrowserProvider()->SetUIViewAlphaWithAnimation(container_view_,
65 0); 66 0);
66 } 67 }
67 68
68 void InfoBarContainerIOS::RestoreInfobars() { 69 void InfoBarContainerIOS::RestoreInfobars() {
69 ios::GetChromeBrowserProvider()->SetUIViewAlphaWithAnimation(container_view_, 70 ios::GetChromeBrowserProvider()->SetUIViewAlphaWithAnimation(container_view_,
70 1); 71 1);
71 } 72 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/infobars/infobar_container_ios.h ('k') | ios/chrome/browser/infobars/infobar_manager_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698