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

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

Issue 18644007: Update some includes of chrome_notification_types.h (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix deps Created 7 years, 5 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
« no previous file with comments | « chrome/browser/printing/print_job.cc ('k') | chrome/browser/printing/print_job_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_job_manager.h" 5 #include "chrome/browser/printing/print_job_manager.h"
6 6
7 #include "chrome/browser/chrome_notification_types.h"
7 #include "chrome/browser/printing/print_job.h" 8 #include "chrome/browser/printing/print_job.h"
8 #include "chrome/browser/printing/printer_query.h" 9 #include "chrome/browser/printing/printer_query.h"
9 #include "chrome/common/chrome_notification_types.h"
10 #include "content/public/browser/notification_service.h" 10 #include "content/public/browser/notification_service.h"
11 #include "printing/printed_document.h" 11 #include "printing/printed_document.h"
12 #include "printing/printed_page.h" 12 #include "printing/printed_page.h"
13 13
14 namespace printing { 14 namespace printing {
15 15
16 PrintJobManager::PrintJobManager() { 16 PrintJobManager::PrintJobManager() {
17 registrar_.Add(this, chrome::NOTIFICATION_PRINT_JOB_EVENT, 17 registrar_.Add(this, chrome::NOTIFICATION_PRINT_JOB_EVENT,
18 content::NotificationService::AllSources()); 18 content::NotificationService::AllSources());
19 } 19 }
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 break; 117 break;
118 } 118 }
119 default: { 119 default: {
120 NOTREACHED(); 120 NOTREACHED();
121 break; 121 break;
122 } 122 }
123 } 123 }
124 } 124 }
125 125
126 } // namespace printing 126 } // namespace printing
OLDNEW
« no previous file with comments | « chrome/browser/printing/print_job.cc ('k') | chrome/browser/printing/print_job_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698