Index: content/browser/renderer_host/pepper/pepper_truetype_font_list_android.cc |
diff --git a/content/browser/renderer_host/pepper/pepper_truetype_font_list_android.cc b/content/browser/renderer_host/pepper/pepper_truetype_font_list_android.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..58ec35fdd42005c24406e4b2dbe7e7e930dff4fb |
--- /dev/null |
+++ b/content/browser/renderer_host/pepper/pepper_truetype_font_list_android.cc |
@@ -0,0 +1,13 @@ |
+// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "content/browser/renderer_host/pepper/pepper_truetype_font_list.h" |
+ |
+namespace content { |
+ |
+std::vector<std::string> GetFontFamilies_SlowBlocking() { |
+ return std::vector<std::string>(); |
dmichael (off chromium)
2013/03/12 18:07:58
Should there be a TODO? Or a note that this isn't
bbudge
2013/03/13 01:26:50
Done.
|
+} |
+ |
+} // namespace content |