| OLD | NEW |
| 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 #ifndef PDF_OUT_OF_PROCESS_INSTANCE_H_ | 5 #ifndef PDF_OUT_OF_PROCESS_INSTANCE_H_ |
| 6 #define PDF_OUT_OF_PROCESS_INSTANCE_H_ | 6 #define PDF_OUT_OF_PROCESS_INSTANCE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 #include <string.h> |
| 9 | 10 |
| 10 #include <queue> | 11 #include <queue> |
| 11 #include <set> | 12 #include <set> |
| 12 #include <string> | 13 #include <string> |
| 13 #include <utility> | 14 #include <utility> |
| 14 #include <vector> | 15 #include <vector> |
| 15 | 16 |
| 16 #include "base/macros.h" | 17 #include "base/macros.h" |
| 17 #include "base/memory/scoped_ptr.h" | 18 #include "base/memory/scoped_ptr.h" |
| 18 #include "pdf/paint_manager.h" | 19 #include "pdf/paint_manager.h" |
| (...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 // The blank space above the first page of the document reserved for the | 341 // The blank space above the first page of the document reserved for the |
| 341 // toolbar. | 342 // toolbar. |
| 342 int top_toolbar_height_; | 343 int top_toolbar_height_; |
| 343 | 344 |
| 344 DISALLOW_COPY_AND_ASSIGN(OutOfProcessInstance); | 345 DISALLOW_COPY_AND_ASSIGN(OutOfProcessInstance); |
| 345 }; | 346 }; |
| 346 | 347 |
| 347 } // namespace chrome_pdf | 348 } // namespace chrome_pdf |
| 348 | 349 |
| 349 #endif // PDF_OUT_OF_PROCESS_INSTANCE_H_ | 350 #endif // PDF_OUT_OF_PROCESS_INSTANCE_H_ |
| OLD | NEW |