| 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_BROWSER_PRINTING_PRINTING_MESSAGE_FILTER_H_ | 5 #ifndef CHROME_BROWSER_PRINTING_PRINTING_MESSAGE_FILTER_H_ |
| 6 #define CHROME_BROWSER_PRINTING_PRINTING_MESSAGE_FILTER_H_ | 6 #define CHROME_BROWSER_PRINTING_PRINTING_MESSAGE_FILTER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/prefs/pref_member.h" | |
| 15 #include "build/build_config.h" | 14 #include "build/build_config.h" |
| 15 #include "components/prefs/pref_member.h" |
| 16 #include "content/public/browser/browser_message_filter.h" | 16 #include "content/public/browser/browser_message_filter.h" |
| 17 | 17 |
| 18 #if defined(OS_WIN) | 18 #if defined(OS_WIN) |
| 19 #include "base/memory/shared_memory.h" | 19 #include "base/memory/shared_memory.h" |
| 20 #endif | 20 #endif |
| 21 | 21 |
| 22 struct PrintHostMsg_ScriptedPrint_Params; | 22 struct PrintHostMsg_ScriptedPrint_Params; |
| 23 class Profile; | 23 class Profile; |
| 24 class ProfileIOData; | 24 class ProfileIOData; |
| 25 | 25 |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 const int render_process_id_; | 117 const int render_process_id_; |
| 118 | 118 |
| 119 scoped_refptr<PrintQueriesQueue> queue_; | 119 scoped_refptr<PrintQueriesQueue> queue_; |
| 120 | 120 |
| 121 DISALLOW_COPY_AND_ASSIGN(PrintingMessageFilter); | 121 DISALLOW_COPY_AND_ASSIGN(PrintingMessageFilter); |
| 122 }; | 122 }; |
| 123 | 123 |
| 124 } // namespace printing | 124 } // namespace printing |
| 125 | 125 |
| 126 #endif // CHROME_BROWSER_PRINTING_PRINTING_MESSAGE_FILTER_H_ | 126 #endif // CHROME_BROWSER_PRINTING_PRINTING_MESSAGE_FILTER_H_ |
| OLD | NEW |