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 <stdint.h> | 7 #include <stdint.h> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 | 10 |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 | 111 |
112 pp::URLLoader PreviewModeClient::CreateURLLoader() { | 112 pp::URLLoader PreviewModeClient::CreateURLLoader() { |
113 NOTREACHED(); | 113 NOTREACHED(); |
114 return pp::URLLoader(); | 114 return pp::URLLoader(); |
115 } | 115 } |
116 | 116 |
117 void PreviewModeClient::ScheduleCallback(int id, int delay_in_ms) { | 117 void PreviewModeClient::ScheduleCallback(int id, int delay_in_ms) { |
118 NOTREACHED(); | 118 NOTREACHED(); |
119 } | 119 } |
120 | 120 |
| 121 void PreviewModeClient::ScheduleTouchTimerCallback(int id, int delay_in_ms) { |
| 122 NOTREACHED(); |
| 123 } |
| 124 |
121 void PreviewModeClient::SearchString(const base::char16* string, | 125 void PreviewModeClient::SearchString(const base::char16* string, |
122 const base::char16* term, | 126 const base::char16* term, |
123 bool case_sensitive, | 127 bool case_sensitive, |
124 std::vector<SearchStringResult>* results) { | 128 std::vector<SearchStringResult>* results) { |
125 NOTREACHED(); | 129 NOTREACHED(); |
126 } | 130 } |
127 | 131 |
128 void PreviewModeClient::DocumentPaintOccurred() { | 132 void PreviewModeClient::DocumentPaintOccurred() { |
129 NOTREACHED(); | 133 NOTREACHED(); |
130 } | 134 } |
(...skipping 30 matching lines...) Expand all Loading... |
161 NOTREACHED(); | 165 NOTREACHED(); |
162 return false; | 166 return false; |
163 } | 167 } |
164 | 168 |
165 uint32_t PreviewModeClient::GetBackgroundColor() { | 169 uint32_t PreviewModeClient::GetBackgroundColor() { |
166 NOTREACHED(); | 170 NOTREACHED(); |
167 return 0; | 171 return 0; |
168 } | 172 } |
169 | 173 |
170 } // namespace chrome_pdf | 174 } // namespace chrome_pdf |
OLD | NEW |