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

Side by Side Diff: printing/printed_page.h

Issue 149212: Move printing related stuff to the root printing project from the browser pro... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 #ifndef CHROME_BROWSER_PRINTING_PRINTED_PAGE_H__ 5 #ifndef PRINTING_PRINTED_PAGE_H_
6 #define CHROME_BROWSER_PRINTING_PRINTED_PAGE_H__ 6 #define PRINTING_PRINTED_PAGE_H_
7 7
8 #include "base/gfx/rect.h" 8 #include "base/gfx/rect.h"
9 #include "base/gfx/size.h" 9 #include "base/gfx/size.h"
10 #include "base/ref_counted.h" 10 #include "base/ref_counted.h"
11 #include "base/scoped_ptr.h" 11 #include "base/scoped_ptr.h"
12 #include "printing/native_metafile.h" 12 #include "printing/native_metafile.h"
13 13
14 namespace printing { 14 namespace printing {
15 15
16 // Contains the data to reproduce a printed page, either on screen or on 16 // Contains the data to reproduce a printed page, either on screen or on
(...skipping 23 matching lines...) Expand all
40 40
41 // The physical page size. To support multiple page formats inside on print 41 // The physical page size. To support multiple page formats inside on print
42 // job. 42 // job.
43 const gfx::Size page_size_; 43 const gfx::Size page_size_;
44 44
45 DISALLOW_EVIL_CONSTRUCTORS(PrintedPage); 45 DISALLOW_EVIL_CONSTRUCTORS(PrintedPage);
46 }; 46 };
47 47
48 } // namespace printing 48 } // namespace printing
49 49
50 #endif // CHROME_BROWSER_PRINTING_PRINTED_PAGE_H__ 50 #endif // PRINTING_PRINTED_PAGE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698