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

Side by Side Diff: pdf/preview_mode_client.cc

Issue 2398763002: Add font substitution metric for Linux (Closed)
Patch Set: Using Boolean Created 4 years, 2 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
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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 139
140 pp::Instance* PreviewModeClient::GetPluginInstance() { 140 pp::Instance* PreviewModeClient::GetPluginInstance() {
141 return nullptr; 141 return nullptr;
142 } 142 }
143 143
144 void PreviewModeClient::DocumentHasUnsupportedFeature( 144 void PreviewModeClient::DocumentHasUnsupportedFeature(
145 const std::string& feature) { 145 const std::string& feature) {
146 NOTREACHED(); 146 NOTREACHED();
147 } 147 }
148 148
149 void PreviewModeClient::FontSubstituted() {
150 NOTREACHED();
151 }
152
149 void PreviewModeClient::DocumentLoadProgress(uint32_t available, 153 void PreviewModeClient::DocumentLoadProgress(uint32_t available,
150 uint32_t doc_size) {} 154 uint32_t doc_size) {}
151 155
152 void PreviewModeClient::FormTextFieldFocusChange(bool in_focus) { 156 void PreviewModeClient::FormTextFieldFocusChange(bool in_focus) {
153 NOTREACHED(); 157 NOTREACHED();
154 } 158 }
155 159
156 bool PreviewModeClient::IsPrintPreview() { 160 bool PreviewModeClient::IsPrintPreview() {
157 NOTREACHED(); 161 NOTREACHED();
158 return false; 162 return false;
159 } 163 }
160 164
161 uint32_t PreviewModeClient::GetBackgroundColor() { 165 uint32_t PreviewModeClient::GetBackgroundColor() {
162 NOTREACHED(); 166 NOTREACHED();
163 return 0; 167 return 0;
164 } 168 }
165 169
166 } // namespace chrome_pdf 170 } // namespace chrome_pdf
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698