Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(35)

Side by Side Diff: pdf/preview_mode_client.cc

Issue 2864603006: Revert of Handle long press in PDF documents. (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « pdf/preview_mode_client.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 108
109 pp::URLLoader PreviewModeClient::CreateURLLoader() { 109 pp::URLLoader PreviewModeClient::CreateURLLoader() {
110 NOTREACHED(); 110 NOTREACHED();
111 return pp::URLLoader(); 111 return pp::URLLoader();
112 } 112 }
113 113
114 void PreviewModeClient::ScheduleCallback(int id, int delay_in_ms) { 114 void PreviewModeClient::ScheduleCallback(int id, int delay_in_ms) {
115 NOTREACHED(); 115 NOTREACHED();
116 } 116 }
117 117
118 void PreviewModeClient::ScheduleTouchTimerCallback(int id, int delay_in_ms) {
119 NOTREACHED();
120 }
121
122 void PreviewModeClient::SearchString(const base::char16* string, 118 void PreviewModeClient::SearchString(const base::char16* string,
123 const base::char16* term, 119 const base::char16* term,
124 bool case_sensitive, 120 bool case_sensitive,
125 std::vector<SearchStringResult>* results) { 121 std::vector<SearchStringResult>* results) {
126 NOTREACHED(); 122 NOTREACHED();
127 } 123 }
128 124
129 void PreviewModeClient::DocumentPaintOccurred() { 125 void PreviewModeClient::DocumentPaintOccurred() {
130 NOTREACHED(); 126 NOTREACHED();
131 } 127 }
(...skipping 30 matching lines...) Expand all
162 NOTREACHED(); 158 NOTREACHED();
163 return false; 159 return false;
164 } 160 }
165 161
166 uint32_t PreviewModeClient::GetBackgroundColor() { 162 uint32_t PreviewModeClient::GetBackgroundColor() {
167 NOTREACHED(); 163 NOTREACHED();
168 return 0; 164 return 0;
169 } 165 }
170 166
171 } // namespace chrome_pdf 167 } // namespace chrome_pdf
OLDNEW
« no previous file with comments | « pdf/preview_mode_client.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698