| 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 CHROME_RENDERER_PRINTING_PRINT_WEB_VIEW_HELPER_H_ | 5 #ifndef CHROME_RENDERER_PRINTING_PRINT_WEB_VIEW_HELPER_H_ |
| 6 #define CHROME_RENDERER_PRINTING_PRINT_WEB_VIEW_HELPER_H_ | 6 #define CHROME_RENDERER_PRINTING_PRINT_WEB_VIEW_HELPER_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/gtest_prod_util.h" | 10 #include "base/gtest_prod_util.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/shared_memory.h" | 12 #include "base/shared_memory.h" |
| 13 #include "base/time.h" | 13 #include "base/time.h" |
| 14 #include "content/public/renderer/render_view_observer.h" | 14 #include "content/public/renderer/render_view_observer.h" |
| 15 #include "content/public/renderer/render_view_observer_tracker.h" | 15 #include "content/public/renderer/render_view_observer_tracker.h" |
| 16 #include "printing/metafile_impl.h" | 16 #include "printing/metafile_impl.h" |
| 17 #include "third_party/WebKit/Source/Platform/chromium/public/WebCanvas.h" | 17 #include "third_party/WebKit/public/platform/WebCanvas.h" |
| 18 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNode.h" | 18 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNode.h" |
| 19 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPrintParams.h" | 19 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPrintParams.h" |
| 20 #include "ui/gfx/size.h" | 20 #include "ui/gfx/size.h" |
| 21 | 21 |
| 22 struct PrintMsg_Print_Params; | 22 struct PrintMsg_Print_Params; |
| 23 struct PrintMsg_PrintPage_Params; | 23 struct PrintMsg_PrintPage_Params; |
| 24 struct PrintMsg_PrintPages_Params; | 24 struct PrintMsg_PrintPages_Params; |
| 25 | 25 |
| 26 namespace base { | 26 namespace base { |
| 27 class DictionaryValue; | 27 class DictionaryValue; |
| (...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 459 }; | 459 }; |
| 460 | 460 |
| 461 bool print_node_in_progress_; | 461 bool print_node_in_progress_; |
| 462 PrintPreviewContext print_preview_context_; | 462 PrintPreviewContext print_preview_context_; |
| 463 DISALLOW_COPY_AND_ASSIGN(PrintWebViewHelper); | 463 DISALLOW_COPY_AND_ASSIGN(PrintWebViewHelper); |
| 464 }; | 464 }; |
| 465 | 465 |
| 466 } // namespace printing | 466 } // namespace printing |
| 467 | 467 |
| 468 #endif // CHROME_RENDERER_PRINTING_PRINT_WEB_VIEW_HELPER_H_ | 468 #endif // CHROME_RENDERER_PRINTING_PRINT_WEB_VIEW_HELPER_H_ |
| OLD | NEW |