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

Side by Side Diff: chrome/browser/devtools/global_confirm_info_bar.cc

Issue 1542413002: Switch to standard integer types in chrome/browser/, part 1 of 4. (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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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/devtools/global_confirm_info_bar.h" 5 #include "chrome/browser/devtools/global_confirm_info_bar.h"
6 6
7 #include "base/macros.h"
7 #include "chrome/browser/ui/browser.h" 8 #include "chrome/browser/ui/browser.h"
8 #include "chrome/browser/ui/host_desktop.h" 9 #include "chrome/browser/ui/host_desktop.h"
9 #include "chrome/browser/ui/tabs/tab_strip_model.h" 10 #include "chrome/browser/ui/tabs/tab_strip_model.h"
10 #include "components/infobars/core/infobar.h" 11 #include "components/infobars/core/infobar.h"
11 #include "ui/gfx/image/image.h" 12 #include "ui/gfx/image/image.h"
12 13
13 // InfoBarDelegateProxy ------------------------------------------------------- 14 // InfoBarDelegateProxy -------------------------------------------------------
14 15
15 class GlobalConfirmInfoBar::DelegateProxy : public ConfirmInfoBarDelegate { 16 class GlobalConfirmInfoBar::DelegateProxy : public ConfirmInfoBarDelegate {
16 public: 17 public:
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 break; 192 break;
192 } 193 }
193 } 194 }
194 } 195 }
195 196
196 void GlobalConfirmInfoBar::OnManagerShuttingDown( 197 void GlobalConfirmInfoBar::OnManagerShuttingDown(
197 infobars::InfoBarManager* manager) { 198 infobars::InfoBarManager* manager) {
198 manager->RemoveObserver(this); 199 manager->RemoveObserver(this);
199 proxies_.erase(manager); 200 proxies_.erase(manager);
200 } 201 }
OLDNEW
« no previous file with comments | « chrome/browser/devtools/devtools_window_testing.h ('k') | chrome/browser/devtools/remote_debugging_server.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698