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

Side by Side Diff: chrome/browser/printing/print_preview_dialog_controller.cc

Issue 1548133002: Switch to standard integer types in chrome/browser/, part 3 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 "chrome/browser/printing/print_preview_dialog_controller.h" 5 #include "chrome/browser/printing/print_preview_dialog_controller.h"
6 6
7 #include <stddef.h>
8
7 #include <algorithm> 9 #include <algorithm>
8 #include <string> 10 #include <string>
9 #include <vector> 11 #include <vector>
10 12
11 #include "base/auto_reset.h" 13 #include "base/auto_reset.h"
14 #include "base/macros.h"
12 #include "base/path_service.h" 15 #include "base/path_service.h"
13 #include "base/strings/utf_string_conversions.h" 16 #include "base/strings/utf_string_conversions.h"
17 #include "build/build_config.h"
14 #include "chrome/browser/browser_process.h" 18 #include "chrome/browser/browser_process.h"
15 #include "chrome/browser/chrome_notification_types.h" 19 #include "chrome/browser/chrome_notification_types.h"
16 #include "chrome/browser/extensions/chrome_extension_web_contents_observer.h" 20 #include "chrome/browser/extensions/chrome_extension_web_contents_observer.h"
17 #include "chrome/browser/printing/print_view_manager.h" 21 #include "chrome/browser/printing/print_view_manager.h"
18 #include "chrome/browser/task_management/web_contents_tags.h" 22 #include "chrome/browser/task_management/web_contents_tags.h"
19 #include "chrome/browser/ui/browser.h" 23 #include "chrome/browser/ui/browser.h"
20 #include "chrome/browser/ui/browser_finder.h" 24 #include "chrome/browser/ui/browser_finder.h"
21 #include "chrome/browser/ui/browser_window.h" 25 #include "chrome/browser/ui/browser_window.h"
22 #include "chrome/browser/ui/host_desktop.h" 26 #include "chrome/browser/ui/host_desktop.h"
23 #include "chrome/browser/ui/webui/chrome_web_contents_handler.h" 27 #include "chrome/browser/ui/webui/chrome_web_contents_handler.h"
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 static_cast<PrintPreviewUI*>(web_ui->GetController()); 482 static_cast<PrintPreviewUI*>(web_ui->GetController());
479 if (print_preview_ui) 483 if (print_preview_ui)
480 print_preview_ui->OnPrintPreviewDialogDestroyed(); 484 print_preview_ui->OnPrintPreviewDialogDestroyed();
481 } 485 }
482 486
483 preview_dialog_map_.erase(preview_dialog); 487 preview_dialog_map_.erase(preview_dialog);
484 RemoveObservers(preview_dialog); 488 RemoveObservers(preview_dialog);
485 } 489 }
486 490
487 } // namespace printing 491 } // namespace printing
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698