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

Side by Side Diff: chrome/browser/views/blocked_popup_container.cc

Issue 20378: Reduce the amount of included header files. Vast change like in "Oh God! This... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this 1 // Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this
2 // source code is governed by a BSD-style license that can be found in the 2 // source code is governed by a BSD-style license that can be found in the
3 // LICENSE file. 3 // LICENSE file.
4 4
5 // Implementation of BlockedPopupContainer and its corresponding View 5 // Implementation of BlockedPopupContainer and its corresponding View
6 // class. The BlockedPopupContainer is the sort of Model class which owns the 6 // class. The BlockedPopupContainer is the sort of Model class which owns the
7 // blocked popups' TabContents (but like most Chromium interface code, it there 7 // blocked popups' TabContents (but like most Chromium interface code, it there
8 // isn't a strict Model/View separation), and BlockedPopupContainerView 8 // isn't a strict Model/View separation), and BlockedPopupContainerView
9 // presents the user interface controls, creates and manages the popup menu. 9 // presents the user interface controls, creates and manages the popup menu.
10 10
11 #include "chrome/browser/views/blocked_popup_container.h" 11 #include "chrome/browser/views/blocked_popup_container.h"
12 12
13 #include <math.h> 13 #include <math.h>
14 14
15 #include "base/string_util.h"
15 #include "grit/theme_resources.h" 16 #include "grit/theme_resources.h"
16 #include "chrome/browser/profile.h" 17 #include "chrome/browser/profile.h"
17 #include "chrome/browser/tab_contents/tab_contents.h" 18 #include "chrome/browser/tab_contents/tab_contents.h"
18 #include "chrome/common/gfx/chrome_canvas.h" 19 #include "chrome/common/gfx/chrome_canvas.h"
19 #include "chrome/common/gfx/path.h" 20 #include "chrome/common/gfx/path.h"
20 #include "chrome/common/l10n_util.h" 21 #include "chrome/common/l10n_util.h"
21 #include "chrome/common/notification_service.h" 22 #include "chrome/common/notification_service.h"
22 #include "chrome/common/pref_names.h" 23 #include "chrome/common/pref_names.h"
23 #include "chrome/common/resource_bundle.h" 24 #include "chrome/common/resource_bundle.h"
24 #include "chrome/views/background.h" 25 #include "chrome/views/background.h"
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 499
499 void BlockedPopupContainer::CloseEachTabContents() { 500 void BlockedPopupContainer::CloseEachTabContents() {
500 while (!blocked_popups_.empty()) { 501 while (!blocked_popups_.empty()) {
501 blocked_popups_.back().first->set_delegate(NULL); 502 blocked_popups_.back().first->set_delegate(NULL);
502 blocked_popups_.back().first->CloseContents(); 503 blocked_popups_.back().first->CloseContents();
503 blocked_popups_.pop_back(); 504 blocked_popups_.pop_back();
504 } 505 }
505 506
506 blocked_popups_.clear(); 507 blocked_popups_.clear();
507 } 508 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698