OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "pdf/preview_mode_client.h" | 5 #include "pdf/preview_mode_client.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "pdf/instance.h" | 8 #include "pdf/instance.h" |
9 | 9 |
10 namespace chrome_pdf { | 10 namespace chrome_pdf { |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 | 152 |
153 void PreviewModeClient::FormTextFieldFocusChange(bool in_focus) { | 153 void PreviewModeClient::FormTextFieldFocusChange(bool in_focus) { |
154 NOTREACHED(); | 154 NOTREACHED(); |
155 } | 155 } |
156 | 156 |
157 bool PreviewModeClient::IsPrintPreview() { | 157 bool PreviewModeClient::IsPrintPreview() { |
158 NOTREACHED(); | 158 NOTREACHED(); |
159 return false; | 159 return false; |
160 } | 160 } |
161 | 161 |
| 162 uint32 PreviewModeClient::GetBackgroundColor() { |
| 163 NOTREACHED(); |
| 164 return 0; |
| 165 } |
| 166 |
162 } // namespace chrome_pdf | 167 } // namespace chrome_pdf |
OLD | NEW |