1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
pdf / pdf_view_web_plugin.cc [blame]
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "pdf/pdf_view_web_plugin.h"
#include <stddef.h>
#include <stdint.h>
#include <algorithm>
#include <memory>
#include <string>
#include <string_view>
#include <utility>
#include <vector>
#include "base/auto_reset.h"
#include "base/check_op.h"
#include "base/compiler_specific.h"
#include "base/containers/fixed_flat_map.h"
#include "base/containers/queue.h"
#include "base/debug/crash_logging.h"
#include "base/feature_list.h"
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/i18n/char_iterator.h"
#include "base/i18n/rtl.h"
#include "base/i18n/time_formatting.h"
#include "base/logging.h"
#include "base/memory/raw_ptr.h"
#include "base/no_destructor.h"
#include "base/notreached.h"
#include "base/numerics/safe_conversions.h"
#include "base/strings/escape.h"
#include "base/strings/strcat.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_split.h"
#include "base/strings/string_util.h"
#include "base/task/sequenced_task_runner.h"
#include "base/task/single_thread_task_runner.h"
#include "base/thread_annotations.h"
#include "base/threading/thread_checker.h"
#include "base/time/time.h"
#include "base/values.h"
#include "cc/paint/paint_canvas.h"
#include "cc/paint/paint_flags.h"
#include "cc/paint/paint_image.h"
#include "cc/paint/paint_image_builder.h"
#include "net/cookies/site_for_cookies.h"
#include "pdf/accessibility.h"
#include "pdf/accessibility_structs.h"
#include "pdf/buildflags.h"
#include "pdf/content_restriction.h"
#include "pdf/document_layout.h"
#include "pdf/loader/result_codes.h"
#include "pdf/loader/url_loader.h"
#include "pdf/message_util.h"
#include "pdf/metrics_handler.h"
#include "pdf/mojom/pdf.mojom.h"
#include "pdf/paint_manager.h"
#include "pdf/paint_ready_rect.h"
#include "pdf/parsed_params.h"
#include "pdf/pdf_accessibility_data_handler.h"
#include "pdf/pdf_features.h"
#include "pdf/pdf_init.h"
#include "pdf/pdfium/pdfium_engine.h"
#include "pdf/pdfium/pdfium_engine_client.h"
#include "pdf/post_message_receiver.h"
#include "pdf/text_search.h"
#include "pdf/ui/document_properties.h"
#include "pdf/ui/file_name.h"
#include "pdf/ui/thumbnail.h"
#include "printing/metafile_skia.h"
#include "printing/units.h"
#include "services/network/public/mojom/referrer_policy.mojom-shared.h"
#include "third_party/blink/public/common/associated_interfaces/associated_interface_provider.h"
#include "third_party/blink/public/common/input/web_coalesced_input_event.h"
#include "third_party/blink/public/common/input/web_input_event.h"
#include "third_party/blink/public/common/input/web_keyboard_event.h"
#include "third_party/blink/public/common/metrics/document_update_reason.h"
#include "third_party/blink/public/mojom/input/focus_type.mojom-shared.h"
#include "third_party/blink/public/platform/platform.h"
#include "third_party/blink/public/platform/web_input_event_result.h"
#include "third_party/blink/public/platform/web_string.h"
#include "third_party/blink/public/platform/web_text_input_type.h"
#include "third_party/blink/public/platform/web_url.h"
#include "third_party/blink/public/platform/web_url_error.h"
#include "third_party/blink/public/platform/web_url_response.h"
#include "third_party/blink/public/web/web_associated_url_loader.h"
#include "third_party/blink/public/web/web_associated_url_loader_options.h"
#include "third_party/blink/public/web/web_document.h"
#include "third_party/blink/public/web/web_plugin_container.h"
#include "third_party/blink/public/web/web_plugin_params.h"
#include "third_party/blink/public/web/web_print_params.h"
#include "third_party/blink/public/web/web_print_preset_options.h"
#include "third_party/blink/public/web/web_view.h"
#include "third_party/blink/public/web/web_widget.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "third_party/skia/include/core/SkColor.h"
#include "third_party/skia/include/core/SkImage.h"
#include "third_party/skia/include/core/SkImageInfo.h"
#include "third_party/skia/include/core/SkRect.h"
#include "third_party/skia/include/core/SkRefCnt.h"
#include "third_party/skia/include/core/SkSize.h"
#include "ui/base/cursor/cursor.h"
#include "ui/base/cursor/mojom/cursor_type.mojom-shared.h"
#include "ui/base/text/bytes_formatting.h"
#include "ui/events/base_event_utils.h"
#include "ui/events/blink/blink_event_util.h"
#include "ui/events/keycodes/keyboard_codes.h"
#include "ui/gfx/geometry/point.h"
#include "ui/gfx/geometry/point_conversions.h"
#include "ui/gfx/geometry/point_f.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/gfx/geometry/size.h"
#include "ui/gfx/geometry/skia_conversions.h"
#include "ui/gfx/geometry/vector2d.h"
#include "ui/gfx/geometry/vector2d_f.h"
#include "ui/gfx/range/range.h"
#include "url/gurl.h"
#include "v8/include/v8.h"
#if BUILDFLAG(ENABLE_PDF_INK2)
#include "base/memory/raw_ref.h"
#include "pdf/pdf_ink_ids.h"
#include "pdf/pdf_ink_module.h"
#include "pdf/pdf_ink_module_client.h"
#include "third_party/skia/include/core/SkCanvas.h"
#endif
namespace chrome_pdf {
namespace {
// The minimum zoom level allowed.
constexpr double kMinZoom = 0.01;
// A delay to wait between each accessibility page to keep the system
// responsive.
constexpr base::TimeDelta kAccessibilityPageDelay = base::Milliseconds(100);
constexpr base::TimeDelta kFindResultCooldown = base::Milliseconds(100);
// This constant should have the same value as the one in
// `pdf_view_web_plugin_unittest.cc`.
// LINT.IfChange(searchify_state_propagation_delay)
constexpr base::TimeDelta kSearchifyStatePropagationDelay = base::Seconds(1);
// LINT.ThenChange(//pdf/pdf_view_web_plugin_unittest.cc:searchify_state_propagation_delay)
constexpr std::string_view kChromeExtensionHost =
"chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai/";
// Print Preview base URL.
constexpr std::string_view kChromePrintHost = "chrome://print/";
// Untrusted Print Preview base URL.
constexpr std::string_view kChromeUntrustedPrintHost =
"chrome-untrusted://print/";
// Same value as `printing::COMPLETE_PREVIEW_DOCUMENT_INDEX`.
constexpr int kCompletePDFIndex = -1;
// A different negative value to differentiate itself from `kCompletePDFIndex`.
constexpr int kInvalidPDFIndex = -2;
// Enumeration of pinch states.
// This should match PinchPhase enum in
// chrome/browser/resources/pdf/viewport.ts.
enum class PinchPhase {
kNone = 0,
kStart = 1,
kUpdateZoomOut = 2,
kUpdateZoomIn = 3,
kEnd = 4,
};
// Initialization performed per renderer process. Initialization may be
// triggered from multiple plugin instances, but should only execute once.
//
// TODO(crbug.com/40147027): We may be able to simplify this once we've figured
// out exactly which processes need to initialize and shutdown PDFium.
class PerProcessInitializer final {
public:
~PerProcessInitializer() {
// On some configs, thread checker is trivially destructible, which makes
// `PerProcessInitializer` trivially destructible as well. This is a problem
// because `base::NoDestructor` only allows non-trivially destructible
// types. Force `PerProcessInitializer` to be non-trivially destructible by
// declaring a non-default destructor.
}
static PerProcessInitializer& GetInstance() {
static base::NoDestructor<PerProcessInitializer> instance;
return *instance;
}
void Acquire(bool use_skia) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
DCHECK_GE(init_count_, 0);
if (init_count_++ > 0)
return;
DCHECK(!IsSDKInitializedViaPlugin());
InitializeSDK(/*enable_v8=*/true, use_skia, FontMappingMode::kBlink);
SetIsSDKInitializedViaPlugin(true);
}
void Release() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
DCHECK_GT(init_count_, 0);
if (--init_count_ > 0)
return;
DCHECK(IsSDKInitializedViaPlugin());
ShutdownSDK();
SetIsSDKInitializedViaPlugin(false);
}
private:
int init_count_ GUARDED_BY_CONTEXT(thread_checker_) = 0;
// TODO(crbug.com/40147080): Assuming PDFium is thread-hostile for now, and
// must use one thread exclusively.
THREAD_CHECKER(thread_checker_);
};
base::Value::Dict DictFromRect(const gfx::Rect& rect) {
base::Value::Dict dict;
dict.Set("x", rect.x());
dict.Set("y", rect.y());
dict.Set("width", rect.width());
dict.Set("height", rect.height());
return dict;
}
bool IsPrintPreviewUrl(std::string_view url) {
return base::StartsWith(url, kChromeUntrustedPrintHost);
}
int ExtractPrintPreviewPageIndex(std::string_view src_url) {
// Sample `src_url` format: chrome-untrusted://print/id/page_index/print.pdf
// The page_index is zero-based, but can be negative with special meanings.
std::vector<std::string_view> url_substr =
base::SplitStringPiece(src_url.substr(kChromeUntrustedPrintHost.size()),
"/", base::TRIM_WHITESPACE, base::SPLIT_WANT_ALL);
if (url_substr.size() != 3)
return kInvalidPDFIndex;
if (url_substr[2] != "print.pdf")
return kInvalidPDFIndex;
int page_index = 0;
if (!base::StringToInt(url_substr[1], &page_index))
return kInvalidPDFIndex;
return page_index;
}
bool IsPreviewingPDF(int print_preview_page_count) {
return print_preview_page_count == 0;
}
bool IsSaveDataSizeValid(size_t size) {
return size > 0 && size <= PdfViewWebPlugin::kMaximumSavedFileSize;
}
} // namespace
#if BUILDFLAG(ENABLE_PDF_INK2)
class PdfViewWebPlugin::PdfInkModuleClientImpl : public PdfInkModuleClient {
public:
explicit PdfInkModuleClientImpl(PdfViewWebPlugin& plugin) : plugin_(plugin) {}
~PdfInkModuleClientImpl() override = default;
// PdfInkModuleClient:
PageOrientation GetOrientation() const override {
return plugin_->engine_->GetCurrentOrientation();
}
gfx::Rect GetPageContentsRect(int index) override {
if (index < 0 || index >= plugin_->engine_->GetNumberOfPages()) {
return gfx::Rect();
}
return plugin_->engine_->GetPageContentsRect(index);
}
gfx::Vector2dF GetViewportOriginOffset() override {
return plugin_->available_area_.OffsetFromOrigin();
}
float GetZoom() const override {
return plugin_->zoom_ * plugin_->client_->DeviceScaleFactor();
}
void Invalidate(const gfx::Rect& rect) override {
return plugin_->Invalidate(rect);
}
bool IsPageVisible(int page_index) override {
return plugin_->engine_->IsPageVisible(page_index);
}
DocumentV2InkPathShapesMap LoadV2InkPathsFromPdf() override {
DocumentV2InkPathShapesMap shapes_map;
for (int i = 0; i < plugin_->engine_->GetNumberOfPages(); ++i) {
PageV2InkPathShapesMap page_shapes_map =
plugin_->engine_->LoadV2InkPathsForPage(i);
if (page_shapes_map.empty()) {
continue;
}
shapes_map[i] = std::move(page_shapes_map);
}
return shapes_map;
}
void OnAnnotationModeToggled(bool enable) override {
plugin_->engine_->SetFormHighlight(/*enable_form=*/!enable);
if (enable) {
plugin_->engine_->ClearTextSelection();
}
}
void PostMessage(base::Value::Dict message) override {
plugin_->client_->PostMessage(std::move(message));
}
void StrokeAdded(int page_index,
InkStrokeId id,
const ink::Stroke& stroke) override {
plugin_->engine_->ApplyStroke(page_index, id, stroke);
}
void StrokeFinished() override {
base::Value::Dict message;
message.Set("type", "finishInkStroke");
plugin_->client_->PostMessage(std::move(message));
plugin_->SetPluginCanSave(true);
}
void UpdateInkCursorImage(SkBitmap bitmap) override {
gfx::Point hotspot(bitmap.width() / 2, bitmap.height() / 2);
plugin_->cursor_ =
ui::Cursor::NewCustom(std::move(bitmap), std::move(hotspot));
}
void UpdateShapeActive(int page_index,
InkModeledShapeId id,
bool active) override {
plugin_->engine_->UpdateShapeActive(page_index, id, active);
}
void UpdateStrokeActive(int page_index,
InkStrokeId id,
bool active) override {
plugin_->engine_->UpdateStrokeActive(page_index, id, active);
}
void DiscardStroke(int page_index, InkStrokeId id) override {
plugin_->engine_->DiscardStroke(page_index, id);
}
void UpdateThumbnail(int page_index) override {
plugin_->GenerateAndSendInkThumbnail(
page_index,
plugin_->engine_->GetThumbnailSize(page_index, plugin_->device_scale_));
}
int VisiblePageIndexFromPoint(const gfx::PointF& point) override {
for (int i = 0; i < plugin_->engine_->GetNumberOfPages(); ++i) {
if (!IsPageVisible(i)) {
continue;
}
// Explicitly construct a gfx::RectF from gfx::Rect, so the Contains()
// call below works with `point`, which has float values.
gfx::RectF rect(plugin_->engine_->GetPageContentsRect(i));
if (!rect.Contains(point)) {
continue;
}
return i;
}
return -1;
}
private:
const raw_ref<PdfViewWebPlugin> plugin_;
};
#endif // BUILDFLAG(ENABLE_PDF_INK2)
std::unique_ptr<PDFiumEngine> PdfViewWebPlugin::Client::CreateEngine(
PDFiumEngineClient* client,
PDFiumFormFiller::ScriptOption script_option) {
return std::make_unique<PDFiumEngine>(client, script_option);
}
PdfViewWebPlugin::PdfViewWebPlugin(
std::unique_ptr<Client> client,
mojo::AssociatedRemote<pdf::mojom::PdfHost> pdf_host,
blink::WebPluginParams params)
: client_(std::move(client)),
pdf_host_(std::move(pdf_host)),
#if BUILDFLAG(ENABLE_PDF_INK2)
ink_module_client_(MaybeCreatePdfInkModuleClient(*this)),
ink_module_(MaybeCreatePdfInkModule(ink_module_client_.get())),
#endif
initial_params_(std::move(params)) {
DCHECK(pdf_host_);
pdf_host_->SetListener(listener_receiver_.BindNewPipeAndPassRemote());
}
PdfViewWebPlugin::~PdfViewWebPlugin() = default;
bool PdfViewWebPlugin::Initialize(blink::WebPluginContainer* container) {
DCHECK(container);
client_->SetPluginContainer(container);
DCHECK_EQ(container->Plugin(), this);
return InitializeCommon();
}
bool PdfViewWebPlugin::InitializeForTesting() {
return InitializeCommon();
}
bool PdfViewWebPlugin::InitializeCommon() {
// Allow the plugin to handle touch events.
client_->RequestTouchEventType(
blink::WebPluginContainer::kTouchEventRequestTypeRaw);
// Allow the plugin to handle find requests.
client_->UsePluginAsFindHandler();
std::optional<ParsedParams> params = ParseWebPluginParams(initial_params_);
// The contents of `initial_params_` are no longer needed.
initial_params_ = {};
if (!params.has_value())
return false;
// Sets crash keys like `ppapi::proxy::PDFResource::SetCrashData()`. Note that
// we don't set the active URL from the top-level URL, as unlike within a
// plugin process, the active URL changes frequently within a renderer process
// (see crbug.com/1266050 for details).
//
// TODO(crbug.com/40801869): If multiple PDF plugin instances share the same
// renderer process, the crash key will be overwritten by the newest value.
static base::debug::CrashKeyString* subresource_url =
base::debug::AllocateCrashKeyString("subresource_url",
base::debug::CrashKeySize::Size256);
base::debug::SetCrashKeyString(subresource_url, params->original_url);
PerProcessInitializer::GetInstance().Acquire(params->use_skia);
initialized_ = true;
// Check if the PDF is being loaded in the PDF chrome extension. We only allow
// the plugin to be loaded in the extension and print preview to avoid
// exposing sensitive APIs directly to external websites.
//
// This is enforced before creating the plugin (see
// `pdf::CreateInternalPlugin()`), so we just `CHECK` for defense-in-depth.
const std::string& embedder_origin = client_->GetEmbedderOriginString();
is_print_preview_ = (embedder_origin == kChromePrintHost);
CHECK(IsPrintPreview() || embedder_origin == kChromeExtensionHost);
full_frame_ = params->full_frame;
background_color_ = params->background_color;
engine_ = client_->CreateEngine(this, params->script_option);
DCHECK(engine_);
SendSetSmoothScrolling();
pdf_accessibility_data_handler_ = client_->CreateAccessibilityDataHandler(
this, this, client_->PluginContainer(), IsPrintPreview());
CHECK(pdf_accessibility_data_handler_);
// Skip the remaining initialization when in Print Preview mode. Loading will
// continue after the plugin receives a "resetPrintPreviewMode" message.
if (IsPrintPreview())
return true;
last_progress_sent_ = 0;
LoadUrl(params->src_url, base::BindOnce(&PdfViewWebPlugin::DidOpen,
weak_factory_.GetWeakPtr()));
url_ = params->original_url;
// Not all edits go through the PDF plugin's form filler. The plugin instance
// can be restarted by exiting annotation mode on ChromeOS, which can set the
// document to an edited state.
edit_mode_ = params->has_edits;
#if !BUILDFLAG(ENABLE_INK)
DCHECK(!edit_mode_);
#endif // !BUILDFLAG(ENABLE_INK)
metrics_handler_ = std::make_unique<MetricsHandler>();
return true;
}
void PdfViewWebPlugin::SendSetSmoothScrolling() {
base::Value::Dict message;
message.Set("type", "setSmoothScrolling");
message.Set("smoothScrolling",
blink::Platform::Current()->IsScrollAnimatorEnabled());
client_->PostMessage(std::move(message));
}
void PdfViewWebPlugin::DidOpen(std::unique_ptr<UrlLoader> loader,
int32_t result) {
if (result == kSuccess) {
if (!engine_->HandleDocumentLoad(std::move(loader), url_)) {
document_load_state_ = DocumentLoadState::kLoading;
DocumentLoadFailed();
}
} else if (result != kErrorAborted) {
DocumentLoadFailed();
}
}
void PdfViewWebPlugin::Destroy() {
if (initialized_) {
// Explicitly destroy the PDFiumEngine during destruction as it may call
// back into this object.
preview_engine_.reset();
engine_.reset();
PerProcessInitializer::GetInstance().Release();
}
client_->SetPluginContainer(nullptr);
delete this;
}
blink::WebPluginContainer* PdfViewWebPlugin::Container() const {
return client_->PluginContainer();
}
v8::Local<v8::Object> PdfViewWebPlugin::V8ScriptableObject(
v8::Isolate* isolate) {
if (scriptable_receiver_.IsEmpty()) {
// TODO(crbug.com/40147080): Messages should not be handled on the renderer
// main thread.
scriptable_receiver_.Reset(
isolate, PostMessageReceiver::Create(
isolate, client_->GetWeakPtr(), weak_factory_.GetWeakPtr(),
base::SequencedTaskRunner::GetCurrentDefault()));
}
return scriptable_receiver_.Get(isolate);
}
bool PdfViewWebPlugin::SupportsKeyboardFocus() const {
return !IsPrintPreview();
}
void PdfViewWebPlugin::UpdateAllLifecyclePhases(
blink::DocumentUpdateReason reason) {}
void PdfViewWebPlugin::Paint(cc::PaintCanvas* canvas, const gfx::Rect& rect) {
// Clip the intersection of the paint rect and the plugin rect, so that
// painting outside the plugin or the paint rect area can be avoided.
// Note: `rect` is in CSS pixels. We need to use `css_plugin_rect_`
// to calculate the intersection.
SkRect invalidate_rect =
gfx::RectToSkRect(gfx::IntersectRects(css_plugin_rect_, rect));
cc::PaintCanvasAutoRestore auto_restore(canvas, /*save=*/true);
canvas->clipRect(invalidate_rect);
// Paint with the plugin's background color if the snapshot is not ready.
if (snapshot_.GetSkImageInfo().isEmpty()) {
cc::PaintFlags flags;
flags.setBlendMode(SkBlendMode::kSrc);
flags.setColor(GetBackgroundColor());
canvas->drawRect(invalidate_rect, flags);
return;
}
// Layer translate is independent of scaling, so apply first.
if (!total_translate_.IsZero())
canvas->translate(total_translate_.x(), total_translate_.y());
// Position layer at plugin origin before layer scaling.
if (!plugin_rect_.origin().IsOrigin())
canvas->translate(plugin_rect_.x(), plugin_rect_.y());
if (snapshot_scale_ != 1.0f)
canvas->scale(snapshot_scale_, snapshot_scale_);
canvas->drawImage(snapshot_, 0, 0);
#if BUILDFLAG(ENABLE_PDF_INK2)
if (ink_module_) {
SkBitmap sk_bitmap;
sk_bitmap.allocPixels(
SkImageInfo::MakeN32Premul(rect.width(), rect.height()));
SkCanvas sk_canvas(sk_bitmap);
sk_canvas.clear(SK_ColorTRANSPARENT);
ink_module_->Draw(sk_canvas);
sk_sp<SkImage> snapshot = sk_bitmap.asImage();
CHECK(snapshot);
cc::PaintImage cc_snapshot =
cc::PaintImageBuilder::WithDefault()
.set_image(std::move(snapshot), cc::PaintImage::GetNextContentId())
.set_id(cc::PaintImage::GetNextId())
.set_no_cache(true)
.TakePaintImage();
canvas->drawImage(cc_snapshot, 0, 0);
}
#endif // BUILDFLAG(ENABLE_PDF_INK2)
}
void PdfViewWebPlugin::UpdateGeometry(const gfx::Rect& window_rect,
const gfx::Rect& clip_rect,
const gfx::Rect& unobscured_rect,
bool is_visible) {
// An empty `window_rect` can be received here in the following cases:
// - If the embedded plugin size is 0.
// - If the embedded plugin size is not 0, it can come from re-layouts during
// the plugin initialization.
// For either case, there is no need to create a graphic device to display
// a PDF in an empty window. Since an empty `window_rect` can cause failure
// to create the graphic device, avoid all updates on the geometries and the
// device scales used by the plugin, the PaintManager and the PDFiumEngine
// unless a non-empty `window_rect` is received.
if (window_rect.IsEmpty())
return;
OnViewportChanged(window_rect, client_->DeviceScaleFactor());
gfx::PointF scroll_position = client_->GetScrollPosition();
// Convert back to CSS pixels.
scroll_position.Scale(1.0f / device_scale_);
UpdateScroll(scroll_position);
}
void PdfViewWebPlugin::UpdateScroll(const gfx::PointF& scroll_position) {
if (stop_scrolling_)
return;
float max_x = std::max(document_size_.width() * static_cast<float>(zoom_) -
plugin_dip_size_.width(),
0.0f);
float max_y = std::max(document_size_.height() * static_cast<float>(zoom_) -
plugin_dip_size_.height(),
0.0f);
gfx::PointF scaled_scroll_position(
std::clamp(scroll_position.x(), 0.0f, max_x),
std::clamp(scroll_position.y(), 0.0f, max_y));
scaled_scroll_position.Scale(device_scale_);
engine_->ScrolledToXPosition(scaled_scroll_position.x());
engine_->ScrolledToYPosition(scaled_scroll_position.y());
}
void PdfViewWebPlugin::UpdateFocus(bool focused,
blink::mojom::FocusType focus_type) {
if (has_focus_ != focused) {
engine_->UpdateFocus(focused);
client_->UpdateTextInputState();
// Make sure `this` is still alive after the UpdateSelectionBounds() call.
auto weak_this = weak_factory_.GetWeakPtr();
client_->UpdateSelectionBounds();
if (!weak_this) {
return;
}
}
has_focus_ = focused;
if (!has_focus_ || !SupportsKeyboardFocus())
return;
if (focus_type != blink::mojom::FocusType::kBackward &&
focus_type != blink::mojom::FocusType::kForward) {
return;
}
const int modifiers = focus_type == blink::mojom::FocusType::kForward
? blink::WebInputEvent::kNoModifiers
: blink::WebInputEvent::kShiftKey;
blink::WebKeyboardEvent simulated_event(blink::WebInputEvent::Type::kKeyDown,
modifiers, base::TimeTicks());
simulated_event.windows_key_code = ui::KeyboardCode::VKEY_TAB;
HandleWebInputEvent(simulated_event);
}
void PdfViewWebPlugin::UpdateVisibility(bool visibility) {}
blink::WebInputEventResult PdfViewWebPlugin::HandleInputEvent(
const blink::WebCoalescedInputEvent& event,
ui::Cursor* cursor) {
const blink::WebInputEventResult result =
HandleWebInputEvent(event.Event())
? blink::WebInputEventResult::kHandledApplication
: blink::WebInputEventResult::kNotHandled;
*cursor = cursor_;
return result;
}
void PdfViewWebPlugin::DidReceiveResponse(
const blink::WebURLResponse& response) {}
void PdfViewWebPlugin::DidReceiveData(base::span<const char> data) {}
void PdfViewWebPlugin::DidFinishLoading() {}
void PdfViewWebPlugin::DidFailLoading(const blink::WebURLError& error) {}
bool PdfViewWebPlugin::SupportsPaginatedPrint() {
return true;
}
bool PdfViewWebPlugin::GetPrintPresetOptionsFromDocument(
blink::WebPrintPresetOptions* print_preset_options) {
print_preset_options->is_scaling_disabled = !engine_->GetPrintScaling();
print_preset_options->copies = engine_->GetCopiesToPrint();
print_preset_options->duplex_mode = engine_->GetDuplexMode();
print_preset_options->uniform_page_size = engine_->GetUniformPageSizePoints();
return true;
}
int PdfViewWebPlugin::PrintBegin(const blink::WebPrintParams& print_params) {
// The returned value is always equal to the number of pages in the PDF
// document irrespective of the printable area.
int32_t ret = engine_->GetNumberOfPages();
if (!ret)
return 0;
if (!engine_->HasPermission(DocumentPermission::kPrintLowQuality))
return 0;
print_params_ = print_params;
if (!engine_->HasPermission(DocumentPermission::kPrintHighQuality))
print_params_->rasterize_pdf = true;
engine_->PrintBegin();
return ret;
}
void PdfViewWebPlugin::PrintPage(int page_index, cc::PaintCanvas* canvas) {
// The entire document goes into one metafile. However, it is impossible to
// know if a call to `PrintPage()` is the last call. Thus, `PrintPage()` just
// stores the pages to print and the metafile. Eventually, the printed output
// is generated in `PrintEnd()` and copied over to the metafile.
// Every `canvas` passed to this method should have a valid `metafile`.
printing::MetafileSkia* metafile = canvas->GetPrintingMetafile();
DCHECK(metafile);
// `pages_to_print_` should be empty iff `printing_metafile_` is not set.
DCHECK_EQ(pages_to_print_.empty(), !printing_metafile_);
// The metafile should be the same across all calls for a given print job.
DCHECK(!printing_metafile_ || (printing_metafile_ == metafile));
if (!printing_metafile_)
printing_metafile_ = metafile;
pages_to_print_.push_back(page_index);
}
void PdfViewWebPlugin::PrintEnd() {
if (pages_to_print_.empty())
return;
print_pages_called_ = true;
printing_metafile_->InitFromData(
engine_->PrintPages(pages_to_print_, print_params_.value()));
if (print_pages_called_)
client_->RecordComputedAction("PDF.PrintPage");
print_pages_called_ = false;
print_params_.reset();
engine_->PrintEnd();
printing_metafile_ = nullptr;
pages_to_print_.clear();
}
bool PdfViewWebPlugin::HasSelection() const {
return !selected_text_.IsEmpty();
}
blink::WebString PdfViewWebPlugin::SelectionAsText() const {
return selected_text_;
}
blink::WebString PdfViewWebPlugin::SelectionAsMarkup() const {
return selected_text_;
}
bool PdfViewWebPlugin::CanEditText() const {
return engine_->CanEditText();
}
bool PdfViewWebPlugin::HasEditableText() const {
return engine_->HasEditableText();
}
bool PdfViewWebPlugin::CanUndo() const {
return engine_->CanUndo();
}
bool PdfViewWebPlugin::CanRedo() const {
return engine_->CanRedo();
}
bool PdfViewWebPlugin::CanCopy() const {
return engine_->HasPermission(DocumentPermission::kCopy);
}
bool PdfViewWebPlugin::ExecuteEditCommand(const blink::WebString& name,
const blink::WebString& value) {
if (name == "SelectAll") {
return SelectAll();
}
if (name == "Cut") {
SendExecutedEditCommand("Cut");
return Cut();
}
if (name == "Copy") {
// Deliberately do nothing other than call SendExecutedEditCommand(). The
// caller is expected to separately call CanCopy() and SelectionAsText().
SendExecutedEditCommand("Copy");
return false;
}
if (name == "Paste" || name == "PasteAndMatchStyle") {
SendExecutedEditCommand("Paste");
return Paste(value);
}
if (name == "Undo") {
return Undo();
}
if (name == "Redo") {
return Redo();
}
return false;
}
blink::WebURL PdfViewWebPlugin::LinkAtPosition(
const gfx::Point& /*position*/) const {
return GURL(link_under_cursor_);
}
bool PdfViewWebPlugin::StartFind(const blink::WebString& search_text,
bool case_sensitive,
int identifier) {
if (find_identifier_ == -1) {
// Only go through this code path when `find_identifier_` is -1. i.e. The
// first time the user performs find-in-page, or after a StopFind() call.
// Since StartFind() gets called every time the user changes `search_text`,
// if this conditional did not exist, then SendStartedFindInPage() would
// get called too many times compared to the "Find" action in
// tools/metrics/actions/actions.xml.
SendStartedFindInPage();
}
ResetRecentlySentFindUpdate();
find_identifier_ = identifier;
engine_->StartFind(search_text.Utf16(), case_sensitive);
return true;
}
void PdfViewWebPlugin::SelectFindResult(bool forward, int identifier) {
find_identifier_ = identifier;
engine_->SelectFindResult(forward);
}
void PdfViewWebPlugin::StopFind() {
find_identifier_ = -1;
engine_->StopFind();
tickmarks_.clear();
client_->ReportFindInPageTickmarks(tickmarks_);
}
bool PdfViewWebPlugin::CanRotateView() {
return !IsPrintPreview();
}
void PdfViewWebPlugin::RotateView(blink::WebPlugin::RotationType type) {
DCHECK(CanRotateView());
switch (type) {
case blink::WebPlugin::RotationType::k90Clockwise:
engine_->RotateClockwise();
return;
case blink::WebPlugin::RotationType::k90Counterclockwise:
engine_->RotateCounterclockwise();
return;
}
NOTREACHED();
}
bool PdfViewWebPlugin::ShouldDispatchImeEventsToPlugin() {
return true;
}
blink::WebTextInputType PdfViewWebPlugin::GetPluginTextInputType() {
return text_input_type_;
}
gfx::Rect PdfViewWebPlugin::GetPluginCaretBounds() {
return caret_rect_;
}
void PdfViewWebPlugin::ImeSetCompositionForPlugin(
const blink::WebString& text,
const std::vector<ui::ImeTextSpan>& /*ime_text_spans*/,
const gfx::Range& /*replacement_range*/,
int /*selection_start*/,
int /*selection_end*/) {
composition_text_ = text;
}
void PdfViewWebPlugin::ImeCommitTextForPlugin(
const blink::WebString& text,
const std::vector<ui::ImeTextSpan>& /*ime_text_spans*/,
const gfx::Range& /*replacement_range*/,
int /*relative_cursor_pos*/) {
HandleImeCommit(text);
}
void PdfViewWebPlugin::ImeFinishComposingTextForPlugin(
bool /*keep_selection*/) {
HandleImeCommit(composition_text_);
}
void PdfViewWebPlugin::ProposeDocumentLayout(const DocumentLayout& layout) {
base::Value::Dict message;
message.Set("type", "documentDimensions");
message.Set("width", layout.size().width());
message.Set("height", layout.size().height());
message.Set("layoutOptions", layout.options().ToValue());
base::Value::List page_dimensions;
for (size_t i = 0; i < layout.page_count(); ++i)
page_dimensions.Append(DictFromRect(layout.page_rect(i)));
message.Set("pageDimensions", std::move(page_dimensions));
client_->PostMessage(std::move(message));
// Reload the accessibility tree on layout changes because the relative page
// bounds are no longer valid.
if (layout.dirty() && accessibility_state_ == AccessibilityState::kLoaded)
LoadAccessibility();
}
void PdfViewWebPlugin::Invalidate(const gfx::Rect& rect) {
if (in_paint_) {
deferred_invalidates_.push_back(rect);
return;
}
gfx::Rect offset_rect = rect + available_area_.OffsetFromOrigin();
paint_manager_.InvalidateRect(offset_rect);
}
void PdfViewWebPlugin::DidScroll(const gfx::Vector2d& offset) {
if (!image_data_.drawsNothing())
paint_manager_.ScrollRect(available_area_, offset);
}
void PdfViewWebPlugin::ScrollToX(int x_screen_coords) {
const float x_scroll_pos = x_screen_coords / device_scale_;
base::Value::Dict message;
message.Set("type", "setScrollPosition");
message.Set("x", static_cast<double>(x_scroll_pos));
client_->PostMessage(std::move(message));
}
void PdfViewWebPlugin::ScrollToY(int y_screen_coords) {
const float y_scroll_pos = y_screen_coords / device_scale_;
base::Value::Dict message;
message.Set("type", "setScrollPosition");
message.Set("y", static_cast<double>(y_scroll_pos));
client_->PostMessage(std::move(message));
}
void PdfViewWebPlugin::ScrollBy(const gfx::Vector2d& delta) {
const float x_delta = delta.x() / device_scale_;
const float y_delta = delta.y() / device_scale_;
base::Value::Dict message;
message.Set("type", "scrollBy");
message.Set("x", static_cast<double>(x_delta));
message.Set("y", static_cast<double>(y_delta));
client_->PostMessage(std::move(message));
}
void PdfViewWebPlugin::ScrollToPage(int page) {
if (!engine_ || engine_->GetNumberOfPages() == 0)
return;
base::Value::Dict message;
message.Set("type", "goToPage");
message.Set("page", page);
client_->PostMessage(std::move(message));
}
void PdfViewWebPlugin::NavigateTo(const std::string& url,
WindowOpenDisposition disposition) {
base::Value::Dict message;
message.Set("type", "navigate");
message.Set("url", url);
message.Set("disposition", static_cast<int>(disposition));
client_->PostMessage(std::move(message));
}
void PdfViewWebPlugin::NavigateToDestination(int page,
const float* x,
const float* y,
const float* zoom) {
base::Value::Dict message;
message.Set("type", "navigateToDestination");
message.Set("page", page);
if (x)
message.Set("x", static_cast<double>(*x));
if (y)
message.Set("y", static_cast<double>(*y));
if (zoom)
message.Set("zoom", static_cast<double>(*zoom));
client_->PostMessage(std::move(message));
}
void PdfViewWebPlugin::UpdateCursor(ui::mojom::CursorType new_cursor_type) {
#if BUILDFLAG(ENABLE_PDF_INK2)
if (ink_module_ && ink_module_->enabled()) {
// Block normal mouse cursor updates, so the cursor set by PdfInkModule
// while it is enabled does not get overwritten.
return;
}
#endif
cursor_ = new_cursor_type;
}
void PdfViewWebPlugin::UpdateTickMarks(
const std::vector<gfx::Rect>& tickmarks) {
tickmarks_ = tickmarks;
}
void PdfViewWebPlugin::NotifyNumberOfFindResultsChanged(int total,
bool final_result) {
// We don't want to spam the renderer with too many updates to the number of
// find results. Don't send an update if we sent one too recently. If it's the
// final update, we always send it though.
if (recently_sent_find_update_ && !final_result)
return;
// After stopping search and setting `find_identifier_` to -1 there still may
// be a NotifyNumberOfFindResultsChanged notification pending from engine.
// Just ignore them.
if (find_identifier_ != -1) {
client_->ReportFindInPageMatchCount(find_identifier_, total, final_result);
}
client_->ReportFindInPageTickmarks(tickmarks_);
if (final_result)
return;
recently_sent_find_update_ = true;
base::SingleThreadTaskRunner::GetCurrentDefault()->PostDelayedTask(
FROM_HERE,
base::BindOnce(&PdfViewWebPlugin::ResetRecentlySentFindUpdate,
weak_factory_.GetWeakPtr()),
kFindResultCooldown);
}
void PdfViewWebPlugin::NotifySelectedFindResultChanged(int current_find_index,
bool final_result) {
if (find_identifier_ == -1 || !client_->PluginContainer())
return;
DCHECK_GE(current_find_index, -1);
client_->ReportFindInPageSelection(find_identifier_, current_find_index + 1,
final_result);
}
void PdfViewWebPlugin::NotifyTouchSelectionOccurred() {
base::Value::Dict message;
message.Set("type", "touchSelectionOccurred");
client_->PostMessage(std::move(message));
}
void PdfViewWebPlugin::CaretChanged(const gfx::Rect& caret_rect) {
caret_rect_ = caret_rect + available_area_.OffsetFromOrigin();
}
void PdfViewWebPlugin::GetDocumentPassword(
base::OnceCallback<void(const std::string&)> callback) {
DCHECK(password_callback_.is_null());
password_callback_ = std::move(callback);
base::Value::Dict message;
message.Set("type", "getPassword");
client_->PostMessage(std::move(message));
}
void PdfViewWebPlugin::Beep() {
base::Value::Dict message;
message.Set("type", "beep");
client_->PostMessage(std::move(message));
}
void PdfViewWebPlugin::Alert(const std::string& message) {
client_->Alert(blink::WebString::FromUTF8(message));
}
bool PdfViewWebPlugin::Confirm(const std::string& message) {
return client_->Confirm(blink::WebString::FromUTF8(message));
}
std::string PdfViewWebPlugin::Prompt(const std::string& question,
const std::string& default_answer) {
return client_
->Prompt(blink::WebString::FromUTF8(question),
blink::WebString::FromUTF8(default_answer))
.Utf8();
}
std::string PdfViewWebPlugin::GetURL() {
return url_;
}
void PdfViewWebPlugin::LoadUrl(std::string_view url, LoadUrlCallback callback) {
UrlRequest request;
request.url = std::string(url);
request.method = "GET";
request.ignore_redirects = true;
auto loader = std::make_unique<UrlLoader>(weak_factory_.GetWeakPtr());
UrlLoader* raw_loader = loader.get();
raw_loader->Open(request,
base::BindOnce(std::move(callback), std::move(loader)));
}
void PdfViewWebPlugin::Email(const std::string& to,
const std::string& cc,
const std::string& bcc,
const std::string& subject,
const std::string& body) {
base::Value::Dict message;
message.Set("type", "email");
message.Set("to", base::EscapeUrlEncodedData(to, false));
message.Set("cc", base::EscapeUrlEncodedData(cc, false));
message.Set("bcc", base::EscapeUrlEncodedData(bcc, false));
message.Set("subject", base::EscapeUrlEncodedData(subject, false));
message.Set("body", base::EscapeUrlEncodedData(body, false));
client_->PostMessage(std::move(message));
}
void PdfViewWebPlugin::Print() {
if (!engine_)
return;
const bool can_print =
engine_->HasPermission(DocumentPermission::kPrintLowQuality) ||
engine_->HasPermission(DocumentPermission::kPrintHighQuality);
if (!can_print)
return;
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE, base::BindOnce(&PdfViewWebPlugin::OnInvokePrintDialog,
weak_factory_.GetWeakPtr()));
}
void PdfViewWebPlugin::SubmitForm(const std::string& url,
const void* data,
int length) {
// `url` might be a relative URL. Resolve it against the document's URL.
// TODO(crbug.com/40224475): Probably redundant with `Client::CompleteURL()`.
GURL resolved_url = GURL(url_).Resolve(url);
if (!resolved_url.is_valid())
return;
UrlRequest request;
request.url = resolved_url.spec();
request.method = "POST";
request.body.assign(static_cast<const char*>(data), length);
form_loader_ = std::make_unique<UrlLoader>(weak_factory_.GetWeakPtr());
form_loader_->Open(request, base::BindOnce(&PdfViewWebPlugin::DidFormOpen,
weak_factory_.GetWeakPtr()));
}
void PdfViewWebPlugin::DidFormOpen(int32_t result) {
// TODO(crbug.com/41317525): Process response.
LOG_IF(ERROR, result != kSuccess) << "DidFormOpen failed: " << result;
form_loader_.reset();
}
void PdfViewWebPlugin::DidStartLoading() {
if (did_call_start_loading_)
return;
client_->DidStartLoading();
did_call_start_loading_ = true;
}
void PdfViewWebPlugin::DidStopLoading() {
if (!did_call_start_loading_)
return;
client_->DidStopLoading();
did_call_start_loading_ = false;
}
int PdfViewWebPlugin::GetContentRestrictions() const {
int content_restrictions = kContentRestrictionCut | kContentRestrictionPaste;
if (!engine_->HasPermission(DocumentPermission::kCopy))
content_restrictions |= kContentRestrictionCopy;
if (!engine_->HasPermission(DocumentPermission::kPrintLowQuality) &&
!engine_->HasPermission(DocumentPermission::kPrintHighQuality)) {
content_restrictions |= kContentRestrictionPrint;
}
return content_restrictions;
}
std::unique_ptr<UrlLoader> PdfViewWebPlugin::CreateUrlLoader() {
if (full_frame_) {
DidStartLoading();
// Disable save and print until the document is fully loaded, since they
// would generate an incomplete document. This needs to be done each time
// DidStartLoading() is called because that resets the content restrictions.
pdf_host_->UpdateContentRestrictions(kContentRestrictionSave |
kContentRestrictionPrint);
}
return std::make_unique<UrlLoader>(weak_factory_.GetWeakPtr());
}
v8::Isolate* PdfViewWebPlugin::GetIsolate() {
return client_->GetIsolate();
}
std::vector<PDFiumEngineClient::SearchStringResult>
PdfViewWebPlugin::SearchString(const std::u16string& needle,
const std::u16string& haystack,
bool case_sensitive) {
return TextSearch(/*needle=*/needle, /*haystack=*/haystack, case_sensitive);
}
void PdfViewWebPlugin::DocumentLoadComplete() {
DCHECK_EQ(DocumentLoadState::kLoading, document_load_state_);
document_load_state_ = DocumentLoadState::kComplete;
client_->RecordComputedAction("PDF.LoadSuccess");
// Clear the focus state for on-screen keyboards.
FormFieldFocusChange(PDFiumEngineClient::FocusFieldType::kNoFocus);
if (IsPrintPreview()) {
// Scroll location is retained across document loads in Print Preview, so
// there's no need to override the scroll position by scrolling again.
if (IsPreviewingPDF(print_preview_page_count_)) {
SendPrintPreviewLoadedNotification();
} else {
DCHECK_EQ(0, print_preview_loaded_page_count_);
print_preview_loaded_page_count_ = 1;
engine_->AppendBlankPages(print_preview_page_count_);
LoadNextPreviewPage();
}
OnGeometryChanged(0, 0);
if (!document_size_.IsEmpty())
paint_manager_.InvalidateRect(gfx::Rect(plugin_rect_.size()));
}
RecordDocumentMetrics();
if (base::FeatureList::IsEnabled(chrome_pdf::features::kPdfPortfolio)) {
SendAttachments();
}
SendBookmarks();
SendMetadata();
if (accessibility_state_ == AccessibilityState::kPending)
LoadAccessibility();
// To avoid delaying page load for searchify, start searchify after document
// load is completed.
client_->SetOcrDisconnectedCallback(engine_->GetOcrDisconnectHandler());
engine_->StartSearchify(
base::BindRepeating(&Client::PerformOcr, client_->GetWeakPtr()));
if (!full_frame_)
return;
DidStopLoading();
pdf_host_->UpdateContentRestrictions(GetContentRestrictions());
}
void PdfViewWebPlugin::DocumentLoadFailed() {
DCHECK_EQ(DocumentLoadState::kLoading, document_load_state_);
document_load_state_ = DocumentLoadState::kFailed;
client_->RecordComputedAction("PDF.LoadFailure");
// Send a progress value of -1 to indicate a failure.
SendLoadingProgress(-1);
DidStopLoading();
paint_manager_.InvalidateRect(gfx::Rect(plugin_rect_.size()));
}
void PdfViewWebPlugin::DocumentHasUnsupportedFeature(
const std::string& feature) {
DCHECK(!feature.empty());
std::string metric = base::StrCat({"PDF_Unsupported_", feature});
if (unsupported_features_reported_.insert(metric).second)
client_->RecordComputedAction(metric);
if (!full_frame_ || notified_browser_about_unsupported_feature_)
return;
notified_browser_about_unsupported_feature_ = true;
pdf_host_->HasUnsupportedFeature();
}
void PdfViewWebPlugin::DocumentLoadProgress(uint32_t available,
uint32_t doc_size) {
double progress = 0.0;
if (doc_size > 0) {
progress = 100.0 * static_cast<double>(available) / doc_size;
} else {
// Use heuristics when the document size is unknown.
// Progress logarithmically from 0 to 100M.
static const double kFactor = std::log(100'000'000.0) / 100.0;
if (available > 0)
progress =
std::min(std::log(static_cast<double>(available)) / kFactor, 100.0);
}
// DocumentLoadComplete() will send the 100% load progress.
if (progress >= 100)
return;
// Avoid sending too many progress messages over PostMessage.
if (progress <= last_progress_sent_ + 1)
return;
SendLoadingProgress(progress);
}
void PdfViewWebPlugin::FormFieldFocusChange(
PDFiumEngineClient::FocusFieldType type) {
base::Value::Dict message;
message.Set("type", "formFocusChange");
std::string field_type;
// LINT.IfChange(FocusFieldTypes)
switch (type) {
case PDFiumEngineClient::FocusFieldType::kNoFocus:
field_type = "none";
break;
case PDFiumEngineClient::FocusFieldType::kNonText:
field_type = "non-text";
break;
case PDFiumEngineClient::FocusFieldType::kText:
field_type = "text";
break;
}
// LINT.ThenChange(//chrome/browser/resources/pdf/constants.ts:FocusFieldTypes)
message.Set("focused", field_type);
client_->PostMessage(std::move(message));
text_input_type_ = type == PDFiumEngineClient::FocusFieldType::kText
? blink::WebTextInputType::kWebTextInputTypeText
: blink::WebTextInputType::kWebTextInputTypeNone;
client_->UpdateTextInputState();
}
bool PdfViewWebPlugin::IsPrintPreview() const {
return is_print_preview_;
}
SkColor PdfViewWebPlugin::GetBackgroundColor() const {
return background_color_;
}
void PdfViewWebPlugin::SelectionChanged(const gfx::Rect& left,
const gfx::Rect& right) {
gfx::PointF left_point(left.x() + available_area_.x(), left.y());
gfx::PointF right_point(right.x() + available_area_.x(), right.y());
const float inverse_scale = 1.0f / device_scale_;
left_point.Scale(inverse_scale);
right_point.Scale(inverse_scale);
pdf_host_->SelectionChanged(left_point, left.height() * inverse_scale,
right_point, right.height() * inverse_scale);
if (accessibility_state_ == AccessibilityState::kLoaded)
PrepareAndSetAccessibilityViewportInfo();
}
void PdfViewWebPlugin::EnteredEditMode() {
edit_mode_ = true;
SetPluginCanSave(true);
base::Value::Dict message;
message.Set("type", "setIsEditing");
client_->PostMessage(std::move(message));
}
void PdfViewWebPlugin::DocumentFocusChanged(bool document_has_focus) {
base::Value::Dict message;
message.Set("type", "documentFocusChanged");
message.Set("hasFocus", document_has_focus);
client_->PostMessage(std::move(message));
}
void PdfViewWebPlugin::SetSelectedText(const std::string& selected_text) {
selected_text_ = blink::WebString::FromUTF8(selected_text);
client_->TextSelectionChanged(selected_text_, /*offset=*/0,
gfx::Range(0, selected_text_.length()));
}
void PdfViewWebPlugin::SetLinkUnderCursor(
const std::string& link_under_cursor) {
link_under_cursor_ = link_under_cursor;
}
bool PdfViewWebPlugin::IsValidLink(const std::string& url) {
return base::Value(url).is_string();
}
#if BUILDFLAG(ENABLE_PDF_INK2)
bool PdfViewWebPlugin::IsInAnnotationMode() const {
return ink_module_ && ink_module_->enabled();
}
#endif // BUILDFLAG(ENABLE_PDF_INK2)
#if BUILDFLAG(ENABLE_SCREEN_AI_SERVICE)
void PdfViewWebPlugin::OnSearchifyStateChange(bool busy) {
if (!busy) {
if (show_searchify_in_progress_) {
show_searchify_in_progress_ = false;
SetShowSearchifyInProgress(false);
}
return;
}
pdf_host_->OnSearchifyStarted();
if (!show_searchify_in_progress_) {
// The UI is asked to show the progress indicator with 1s delay, so that if
// the task finishes in less than 1s, the indicator would not be shown.
show_searchify_in_progress_ = true;
base::SingleThreadTaskRunner::GetCurrentDefault()->PostDelayedTask(
FROM_HERE,
base::BindOnce(&PdfViewWebPlugin::SetShowSearchifyInProgress,
weak_factory_.GetWeakPtr(), /*show=*/true),
kSearchifyStatePropagationDelay);
return;
}
}
void PdfViewWebPlugin::SetShowSearchifyInProgress(bool show) {
// Searchify tasks are expected to be quite fast most of the times, and if so,
// showing progress indicator is not needed.
// `SetShowSearchifyInProgress` is posted with delay to allow discarding the
// the request to show the progress indicator in such cases.
// A true `show` and a false `show_searchify_in_progress_` means that the task
// finished before the indicator is shown and UI element is not needed.
if (show && !show_searchify_in_progress_) {
return;
}
base::Value::Dict message;
message.Set("type", "showSearchifyInProgress");
message.Set("show", show);
client_->PostMessage(std::move(message));
}
void PdfViewWebPlugin::OnHasSearchifyText() {
base::Value::Dict message;
message.Set("type", "setHasSearchifyText");
client_->PostMessage(std::move(message));
pdf_accessibility_data_handler_->OnHasSearchifyText();
}
#endif // BUILDFLAG(ENABLE_SCREEN_AI_SERVICE)
void PdfViewWebPlugin::SetCaretPosition(const gfx::PointF& position) {
engine_->SetCaretPosition(FrameToPdfCoordinates(position));
}
void PdfViewWebPlugin::MoveRangeSelectionExtent(const gfx::PointF& extent) {
engine_->MoveRangeSelectionExtent(FrameToPdfCoordinates(extent));
}
void PdfViewWebPlugin::SetSelectionBounds(const gfx::PointF& base,
const gfx::PointF& extent) {
engine_->SetSelectionBounds(FrameToPdfCoordinates(base),
FrameToPdfCoordinates(extent));
}
void PdfViewWebPlugin::GetPdfBytes(uint32_t size_limit,
GetPdfBytesCallback callback) {
uint32_t page_count = engine_->GetNumberOfPages();
if (engine_->GetLoadedByteSize() > size_limit) {
std::move(callback).Run(GetPdfBytesStatus::kSizeLimitExceeded, {},
page_count);
return;
}
std::move(callback).Run(GetPdfBytesStatus::kSuccess, engine_->GetSaveData(),
page_count);
}
void PdfViewWebPlugin::GetPageText(int32_t page_index,
GetPageTextCallback callback) {
if (page_index < 0 || page_index >= engine_->GetNumberOfPages()) {
std::move(callback).Run(std::u16string());
return;
}
std::move(callback).Run(engine_->GetPageText(page_index));
}
bool PdfViewWebPlugin::IsValid() const {
return client_->HasFrame();
}
blink::WebURL PdfViewWebPlugin::CompleteURL(
const blink::WebString& partial_url) const {
DCHECK(IsValid());
return client_->CompleteURL(partial_url);
}
net::SiteForCookies PdfViewWebPlugin::SiteForCookies() const {
DCHECK(IsValid());
return client_->SiteForCookies();
}
void PdfViewWebPlugin::SetReferrerForRequest(
blink::WebURLRequest& request,
const blink::WebURL& referrer_url) {
client_->SetReferrerForRequest(request, referrer_url);
}
std::unique_ptr<blink::WebAssociatedURLLoader>
PdfViewWebPlugin::CreateAssociatedURLLoader(
const blink::WebAssociatedURLLoaderOptions& options) {
return client_->CreateAssociatedURLLoader(options);
}
void PdfViewWebPlugin::OnMessage(const base::Value::Dict& message) {
#if BUILDFLAG(ENABLE_PDF_INK2)
if (ink_module_ && ink_module_->OnMessage(message)) {
return;
}
#endif
using MessageHandler = void (PdfViewWebPlugin::*)(const base::Value::Dict&);
static constexpr auto kMessageHandlers =
base::MakeFixedFlatMap<std::string_view, MessageHandler>({
{"displayAnnotations",
&PdfViewWebPlugin::HandleDisplayAnnotationsMessage},
{"getNamedDestination",
&PdfViewWebPlugin::HandleGetNamedDestinationMessage},
{"getPageBoundingBox",
&PdfViewWebPlugin::HandleGetPageBoundingBoxMessage},
{"getPasswordComplete",
&PdfViewWebPlugin::HandleGetPasswordCompleteMessage},
{"getSelectedText", &PdfViewWebPlugin::HandleGetSelectedTextMessage},
{"getThumbnail", &PdfViewWebPlugin::HandleGetThumbnailMessage},
{"print", &PdfViewWebPlugin::HandlePrintMessage},
{"loadPreviewPage", &PdfViewWebPlugin::HandleLoadPreviewPageMessage},
{"resetPrintPreviewMode",
&PdfViewWebPlugin::HandleResetPrintPreviewModeMessage},
{"rotateClockwise", &PdfViewWebPlugin::HandleRotateClockwiseMessage},
{"rotateCounterclockwise",
&PdfViewWebPlugin::HandleRotateCounterclockwiseMessage},
{"save", &PdfViewWebPlugin::HandleSaveMessage},
{"saveAttachment", &PdfViewWebPlugin::HandleSaveAttachmentMessage},
{"selectAll", &PdfViewWebPlugin::HandleSelectAllMessage},
{"setBackgroundColor",
&PdfViewWebPlugin::HandleSetBackgroundColorMessage},
{"setPresentationMode",
&PdfViewWebPlugin::HandleSetPresentationModeMessage},
{"setTwoUpView", &PdfViewWebPlugin::HandleSetTwoUpViewMessage},
{"stopScrolling", &PdfViewWebPlugin::HandleStopScrollingMessage},
{"viewport", &PdfViewWebPlugin::HandleViewportMessage},
});
MessageHandler handler = kMessageHandlers.at(*message.FindString("type"));
(this->*handler)(message);
}
void PdfViewWebPlugin::HandleDisplayAnnotationsMessage(
const base::Value::Dict& message) {
engine_->DisplayAnnotations(message.FindBool("display").value());
}
void PdfViewWebPlugin::HandleGetNamedDestinationMessage(
const base::Value::Dict& message) {
std::optional<PDFiumEngine::NamedDestination> named_destination =
engine_->GetNamedDestination(*message.FindString("namedDestination"));
const int page_number = named_destination.has_value()
? base::checked_cast<int>(named_destination->page)
: -1;
base::Value::Dict reply = PrepareReplyMessage(message);
reply.Set("pageNumber", page_number);
if (named_destination.has_value() && !named_destination->view.empty()) {
std::ostringstream view_stream;
view_stream << named_destination->view;
if (named_destination->xyz_params.empty()) {
UNSAFE_TODO({
for (unsigned long i = 0; i < named_destination->num_params; ++i) {
view_stream << "," << named_destination->params[i];
}
});
} else {
view_stream << "," << named_destination->xyz_params;
}
reply.Set("namedDestinationView", view_stream.str());
}
client_->PostMessage(std::move(reply));
}
void PdfViewWebPlugin::HandleGetPageBoundingBoxMessage(
const base::Value::Dict& message) {
const int page_index = message.FindInt("page").value();
base::Value::Dict reply = PrepareReplyMessage(message);
PDFiumPage* page = engine_->GetPage(page_index);
CHECK(page);
gfx::RectF bounding_box = page->GetBoundingBox();
gfx::Rect page_bounds = page->rect();
// Flip the origin from bottom-left to top-left.
bounding_box.set_y(static_cast<float>(page_bounds.height()) -
bounding_box.bottom());
reply.Set("x", bounding_box.x());
reply.Set("y", bounding_box.y());
reply.Set("width", bounding_box.width());
reply.Set("height", bounding_box.height());
client_->PostMessage(std::move(reply));
}
void PdfViewWebPlugin::HandleGetPasswordCompleteMessage(
const base::Value::Dict& message) {
DCHECK(password_callback_);
std::move(password_callback_).Run(*message.FindString("password"));
}
void PdfViewWebPlugin::HandleGetSelectedTextMessage(
const base::Value::Dict& message) {
// Always return unix newlines to JavaScript.
std::string selected_text;
base::RemoveChars(engine_->GetSelectedText(), "\r", &selected_text);
base::Value::Dict reply = PrepareReplyMessage(message);
reply.Set("selectedText", selected_text);
client_->PostMessage(std::move(reply));
}
void PdfViewWebPlugin::HandleGetThumbnailMessage(
const base::Value::Dict& message) {
const int page_index = message.FindInt("pageIndex").value();
base::Value::Dict reply = PrepareReplyMessage(message);
engine_->RequestThumbnail(
page_index, device_scale_,
base::BindOnce(&PdfViewWebPlugin::SendThumbnail,
weak_factory_.GetWeakPtr(), std::move(reply), page_index));
}
void PdfViewWebPlugin::HandlePrintMessage(
const base::Value::Dict& /*message*/) {
Print();
}
void PdfViewWebPlugin::HandleRotateClockwiseMessage(
const base::Value::Dict& /*message*/) {
engine_->RotateClockwise();
}
void PdfViewWebPlugin::HandleRotateCounterclockwiseMessage(
const base::Value::Dict& /*message*/) {
engine_->RotateCounterclockwise();
}
void PdfViewWebPlugin::HandleSaveAttachmentMessage(
const base::Value::Dict& message) {
const int index = message.FindInt("attachmentIndex").value();
const std::vector<DocumentAttachmentInfo>& list =
engine_->GetDocumentAttachmentInfoList();
DCHECK_GE(index, 0);
DCHECK_LT(static_cast<size_t>(index), list.size());
DCHECK(list[index].is_readable);
DCHECK(IsSaveDataSizeValid(list[index].size_bytes));
std::vector<uint8_t> data = engine_->GetAttachmentData(index);
base::Value data_to_save(
IsSaveDataSizeValid(data.size()) ? data : std::vector<uint8_t>());
base::Value::Dict reply = PrepareReplyMessage(message);
reply.Set("dataToSave", std::move(data_to_save));
client_->PostMessage(std::move(reply));
}
void PdfViewWebPlugin::HandleSaveMessage(const base::Value::Dict& message) {
const std::string& token = *message.FindString("token");
SaveRequestType request_type =
static_cast<SaveRequestType>(message.FindInt("saveRequestType").value());
switch (request_type) {
case SaveRequestType::kAnnotation:
#if BUILDFLAG(ENABLE_INK) || BUILDFLAG(ENABLE_PDF_INK2)
// In annotation mode, assume the user will make edits and prefer saving
// using the plugin data.
SetPluginCanSave(true);
SaveToBuffer(request_type, token);
return;
#else
NOTREACHED();
#endif // BUILDFLAG(ENABLE_INK) || BUILDFLAG(ENABLE_PDF_INK2)
case SaveRequestType::kOriginal: {
const bool can_save = plugin_can_save_ || edit_mode_;
SetPluginCanSave(false);
SaveToFile(token);
SetPluginCanSave(can_save);
return;
}
case SaveRequestType::kEdited:
SaveToBuffer(request_type, token);
return;
}
NOTREACHED();
}
void PdfViewWebPlugin::HandleSelectAllMessage(
const base::Value::Dict& /*message*/) {
engine_->SelectAll();
}
void PdfViewWebPlugin::HandleSetBackgroundColorMessage(
const base::Value::Dict& message) {
background_color_ =
base::checked_cast<SkColor>(message.FindDouble("color").value());
}
void PdfViewWebPlugin::HandleSetPresentationModeMessage(
const base::Value::Dict& message) {
const bool presentation_mode =
message.FindBool("enablePresentationMode").value();
engine_->SetReadOnly(presentation_mode);
if (presentation_mode) {
cursor_ = ui::mojom::CursorType::kPointer;
}
}
void PdfViewWebPlugin::HandleSetTwoUpViewMessage(
const base::Value::Dict& message) {
engine_->SetDocumentLayout(message.FindBool("enableTwoUpView").value()
? DocumentLayout::PageSpread::kTwoUpOdd
: DocumentLayout::PageSpread::kOneUp);
}
void PdfViewWebPlugin::HandleStopScrollingMessage(
const base::Value::Dict& /*message*/) {
stop_scrolling_ = true;
}
void PdfViewWebPlugin::HandleViewportMessage(const base::Value::Dict& message) {
const base::Value::Dict* layout_options_value =
message.FindDict("layoutOptions");
if (layout_options_value) {
DocumentLayout::Options layout_options;
layout_options.FromValue(*layout_options_value);
ui_direction_ = layout_options.direction();
// TODO(crbug.com/40652841): Eliminate need to get document size from here.
document_size_ = engine_->ApplyDocumentLayout(layout_options);
OnGeometryChanged(zoom_, device_scale_);
if (!document_size_.IsEmpty())
paint_manager_.InvalidateRect(gfx::Rect(plugin_rect_.size()));
// Send 100% loading progress only after initial layout negotiated.
if (last_progress_sent_ < 100 &&
document_load_state_ == DocumentLoadState::kComplete) {
SendLoadingProgress(/*percentage=*/100);
}
}
gfx::Vector2dF scroll_offset(*message.FindDouble("xOffset"),
*message.FindDouble("yOffset"));
double new_zoom = *message.FindDouble("zoom");
const PinchPhase pinch_phase =
static_cast<PinchPhase>(*message.FindInt("pinchPhase"));
received_viewport_message_ = true;
stop_scrolling_ = false;
const double zoom_ratio = new_zoom / zoom_;
if (pinch_phase == PinchPhase::kStart) {
scroll_offset_at_last_raster_ = scroll_offset;
last_bitmap_smaller_ = false;
needs_reraster_ = false;
return;
}
// When zooming in, we set a layer transform to avoid unneeded rerasters.
// Also, if we're zooming out and the last time we rerastered was when
// we were even further zoomed out (i.e. we pinch zoomed in and are now
// pinch zooming back out in the same gesture), we update the layer
// transform instead of rerastering.
if (pinch_phase == PinchPhase::kUpdateZoomIn ||
(pinch_phase == PinchPhase::kUpdateZoomOut && zoom_ratio > 1.0)) {
// Get the coordinates of the center of the pinch gesture.
const double pinch_x = *message.FindDouble("pinchX");
const double pinch_y = *message.FindDouble("pinchY");
gfx::Point pinch_center(pinch_x, pinch_y);
// Get the pinch vector which represents the panning caused by the change in
// pinch center between the start and the end of the gesture.
const double pinch_vector_x = *message.FindDouble("pinchVectorX");
const double pinch_vector_y = *message.FindDouble("pinchVectorY");
gfx::Vector2d pinch_vector =
gfx::Vector2d(pinch_vector_x * zoom_ratio, pinch_vector_y * zoom_ratio);
gfx::Vector2d scroll_delta;
// If the rendered document doesn't fill the display area we will
// use `paint_offset` to anchor the paint vertically into the same place.
// We use the scroll bars instead of the pinch vector to get the actual
// position on screen of the paint.
gfx::Vector2d paint_offset;
if (plugin_rect_.width() > GetDocumentPixelWidth() * zoom_ratio) {
// We want to keep the paint in the middle but it must stay in the same
// position relative to the scroll bars.
paint_offset = gfx::Vector2d(0, (1 - zoom_ratio) * pinch_center.y());
scroll_delta = gfx::Vector2d(
0,
(scroll_offset.y() - scroll_offset_at_last_raster_.y() * zoom_ratio));
pinch_vector = gfx::Vector2d();
last_bitmap_smaller_ = true;
} else if (last_bitmap_smaller_) {
// When the document width covers the display area's width, we will anchor
// the scroll bars disregarding where the actual pinch certer is.
pinch_center = gfx::Point((plugin_rect_.width() / device_scale_) / 2,
(plugin_rect_.height() / device_scale_) / 2);
const double zoom_when_doc_covers_plugin_width =
zoom_ * plugin_rect_.width() / GetDocumentPixelWidth();
paint_offset = gfx::Vector2d(
(1 - new_zoom / zoom_when_doc_covers_plugin_width) * pinch_center.x(),
(1 - zoom_ratio) * pinch_center.y());
pinch_vector = gfx::Vector2d();
scroll_delta = gfx::Vector2d(
(scroll_offset.x() - scroll_offset_at_last_raster_.x() * zoom_ratio),
(scroll_offset.y() - scroll_offset_at_last_raster_.y() * zoom_ratio));
}
paint_manager_.SetTransform(zoom_ratio, pinch_center,
pinch_vector + paint_offset + scroll_delta,
true);
needs_reraster_ = false;
return;
}
if (pinch_phase == PinchPhase::kUpdateZoomOut ||
pinch_phase == PinchPhase::kEnd) {
// We reraster on pinch zoom out in order to solve the invalid regions
// that appear after zooming out.
// On pinch end the scale is again 1.f and we request a reraster
// in the new position.
paint_manager_.ClearTransform();
last_bitmap_smaller_ = false;
needs_reraster_ = true;
// If we're rerastering due to zooming out, we need to update the scroll
// offset for the last raster, in case the user continues the gesture by
// zooming in.
scroll_offset_at_last_raster_ = scroll_offset;
}
// Bound the input parameters.
new_zoom = std::max(kMinZoom, new_zoom);
DCHECK(message.FindBool("userInitiated").has_value());
double old_zoom = zoom_;
zoom_ = new_zoom;
OnGeometryChanged(old_zoom, device_scale_);
if (!document_size_.IsEmpty())
paint_manager_.InvalidateRect(gfx::Rect(plugin_rect_.size()));
UpdateScroll(GetScrollPositionFromOffset(scroll_offset));
}
void PdfViewWebPlugin::SaveToBuffer(SaveRequestType request_type,
const std::string& token) {
CHECK(request_type == SaveRequestType::kAnnotation ||
request_type == SaveRequestType::kEdited);
engine_->KillFormFocus();
base::Value::Dict message;
message.Set("type", "saveData");
message.Set("token", token);
message.Set("fileName", GetFileNameForSaveFromUrl(url_));
// Expose `edit_mode_` state for integration testing.
message.Set("editModeForTesting", edit_mode_);
base::Value data_to_save;
bool use_save_data = edit_mode_;
#if BUILDFLAG(ENABLE_PDF_INK2)
use_save_data |= !!ink_module_;
#endif // BUILDFLAG(ENABLE_PDF_INK2)
if (use_save_data) {
base::Value::BlobStorage data = engine_->GetSaveData();
if (IsSaveDataSizeValid(data.size())) {
data_to_save = base::Value(std::move(data));
}
} else {
#if BUILDFLAG(ENABLE_INK)
uint32_t length = engine_->GetLoadedByteSize();
if (IsSaveDataSizeValid(length)) {
base::Value::BlobStorage data(length);
if (engine_->ReadLoadedBytes(length, data.data())) {
data_to_save = base::Value(std::move(data));
}
}
#else
NOTREACHED();
#endif // BUILDFLAG(ENABLE_INK)
}
message.Set("dataToSave", std::move(data_to_save));
client_->PostMessage(std::move(message));
}
void PdfViewWebPlugin::SaveToFile(const std::string& token) {
engine_->KillFormFocus();
base::Value::Dict message;
message.Set("type", "consumeSaveToken");
message.Set("token", token);
client_->PostMessage(std::move(message));
pdf_host_->SaveUrlAs(GURL(url_), network::mojom::ReferrerPolicy::kDefault);
}
void PdfViewWebPlugin::SetPluginCanSave(bool can_save) {
if (plugin_can_save_ == can_save) {
return;
}
plugin_can_save_ = can_save;
pdf_host_->SetPluginCanSave(can_save);
}
void PdfViewWebPlugin::InvalidatePluginContainer() {
client_->Invalidate();
}
void PdfViewWebPlugin::OnPaint(const std::vector<gfx::Rect>& paint_rects,
std::vector<PaintReadyRect>& ready,
std::vector<gfx::Rect>& pending) {
base::AutoReset<bool> auto_reset_in_paint(&in_paint_, true);
DoPaint(paint_rects, ready, pending);
}
gfx::PointF PdfViewWebPlugin::GetScrollPositionFromOffset(
const gfx::Vector2dF& scroll_offset) const {
gfx::PointF scroll_origin;
// TODO(crbug.com/40726602): Right-to-left scrolling currently is not
// compatible with the PDF viewer's sticky "scroller" element.
if (ui_direction_ == base::i18n::RIGHT_TO_LEFT && IsPrintPreview()) {
scroll_origin.set_x(
std::max(document_size_.width() * static_cast<float>(zoom_) -
plugin_dip_size_.width(),
0.0f));
}
return scroll_origin + scroll_offset;
}
void PdfViewWebPlugin::DoPaint(const std::vector<gfx::Rect>& paint_rects,
std::vector<PaintReadyRect>& ready,
std::vector<gfx::Rect>& pending) {
if (image_data_.drawsNothing()) {
DCHECK(plugin_rect_.IsEmpty());
return;
}
PrepareForFirstPaint(ready);
if (!received_viewport_message_ || !needs_reraster_)
return;
engine_->PrePaint();
std::vector<gfx::Rect> ready_rects;
for (const gfx::Rect& paint_rect : paint_rects) {
// Intersect with plugin area since there could be pending invalidates from
// when the plugin area was larger.
gfx::Rect rect =
gfx::IntersectRects(paint_rect, gfx::Rect(plugin_rect_.size()));
if (rect.IsEmpty())
continue;
// Paint the rendering of the PDF document.
gfx::Rect pdf_rect = gfx::IntersectRects(rect, available_area_);
if (!pdf_rect.IsEmpty()) {
pdf_rect.Offset(-available_area_.x(), 0);
std::vector<gfx::Rect> pdf_ready;
std::vector<gfx::Rect> pdf_pending;
engine_->Paint(pdf_rect, image_data_, pdf_ready, pdf_pending);
for (gfx::Rect& ready_rect : pdf_ready) {
ready_rect.Offset(available_area_.OffsetFromOrigin());
ready_rects.push_back(ready_rect);
}
for (gfx::Rect& pending_rect : pdf_pending) {
pending_rect.Offset(available_area_.OffsetFromOrigin());
pending.push_back(pending_rect);
}
}
// Ensure the region above the first page (if any) is filled;
const int32_t first_page_ypos = 0 == engine_->GetNumberOfPages()
? 0
: engine_->GetPageScreenRect(0).y();
if (rect.y() < first_page_ypos) {
gfx::Rect region = gfx::IntersectRects(
rect, gfx::Rect(gfx::Size(plugin_rect_.width(), first_page_ypos)));
image_data_.erase(GetBackgroundColor(), gfx::RectToSkIRect(region));
ready_rects.push_back(region);
}
// Ensure the background parts are filled.
for (const BackgroundPart& background_part : background_parts_) {
gfx::Rect intersection =
gfx::IntersectRects(background_part.location, rect);
if (!intersection.IsEmpty()) {
image_data_.erase(background_part.color,
gfx::RectToSkIRect(intersection));
ready_rects.push_back(intersection);
}
}
}
engine_->PostPaint();
// TODO(crbug.com/40203030): Write pixels directly to the `SkSurface` in
// `PaintManager`, rather than using an intermediate `SkBitmap` and `SkImage`.
sk_sp<SkImage> painted_image = image_data_.asImage();
for (const gfx::Rect& ready_rect : ready_rects)
ready.emplace_back(ready_rect, painted_image);
InvalidateAfterPaintDone();
}
void PdfViewWebPlugin::PrepareForFirstPaint(
std::vector<PaintReadyRect>& ready) {
if (!first_paint_)
return;
// Fill the image data buffer with the background color.
first_paint_ = false;
image_data_.eraseColor(background_color_);
ready.emplace_back(gfx::SkIRectToRect(image_data_.bounds()),
image_data_.asImage(), /*flush_now=*/true);
}
void PdfViewWebPlugin::OnGeometryChanged(double old_zoom,
float old_device_scale) {
RecalculateAreas(old_zoom, old_device_scale);
if (accessibility_state_ == AccessibilityState::kLoaded) {
PrepareAndSetAccessibilityViewportInfo();
}
#if BUILDFLAG(ENABLE_PDF_INK2)
if (ink_module_) {
ink_module_->OnGeometryChanged();
}
#endif
}
void PdfViewWebPlugin::RecalculateAreas(double old_zoom,
float old_device_scale) {
if (zoom_ != old_zoom || device_scale_ != old_device_scale)
engine_->ZoomUpdated(zoom_ * device_scale_);
available_area_ = gfx::Rect(plugin_rect_.size());
int doc_width = GetDocumentPixelWidth();
if (doc_width < available_area_.width()) {
// Center the document horizontally inside the plugin rectangle.
available_area_.Offset((plugin_rect_.width() - doc_width) / 2, 0);
available_area_.set_width(doc_width);
}
// The distance between top of the plugin and the bottom of the document in
// pixels.
int bottom_of_document = GetDocumentPixelHeight();
if (bottom_of_document < plugin_rect_.height())
available_area_.set_height(bottom_of_document);
CalculateBackgroundParts();
engine_->PageOffsetUpdated(available_area_.OffsetFromOrigin());
engine_->PluginSizeUpdated(available_area_.size());
}
void PdfViewWebPlugin::CalculateBackgroundParts() {
background_parts_.clear();
int left_width = available_area_.x();
int right_start = available_area_.right();
int right_width = std::abs(plugin_rect_.width() - available_area_.right());
int bottom = std::min(available_area_.bottom(), plugin_rect_.height());
// Note: we assume the display of the PDF document is always centered
// horizontally, but not necessarily centered vertically.
// Add the left rectangle.
BackgroundPart part = {gfx::Rect(left_width, bottom), GetBackgroundColor()};
if (!part.location.IsEmpty())
background_parts_.push_back(part);
// Add the right rectangle.
part.location = gfx::Rect(right_start, 0, right_width, bottom);
if (!part.location.IsEmpty())
background_parts_.push_back(part);
// Add the bottom rectangle.
part.location = gfx::Rect(0, bottom, plugin_rect_.width(),
plugin_rect_.height() - bottom);
if (!part.location.IsEmpty())
background_parts_.push_back(part);
}
int PdfViewWebPlugin::GetDocumentPixelWidth() const {
return static_cast<int>(
std::ceil(document_size_.width() * zoom_ * device_scale_));
}
int PdfViewWebPlugin::GetDocumentPixelHeight() const {
return static_cast<int>(
std::ceil(document_size_.height() * zoom_ * device_scale_));
}
void PdfViewWebPlugin::InvalidateAfterPaintDone() {
if (deferred_invalidates_.empty())
return;
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE, base::BindOnce(&PdfViewWebPlugin::ClearDeferredInvalidates,
weak_factory_.GetWeakPtr()));
}
void PdfViewWebPlugin::ClearDeferredInvalidates() {
DCHECK(!in_paint_);
for (const gfx::Rect& rect : deferred_invalidates_)
Invalidate(rect);
deferred_invalidates_.clear();
}
void PdfViewWebPlugin::UpdateSnapshot(sk_sp<SkImage> snapshot) {
// Every time something changes (e.g. scale or scroll position),
// `UpdateSnapshot()` is called, so the snapshot is effectively used only
// once. Make it "no-cache" so that the old snapshots are not cached
// downstream.
//
// Otherwise, for instance when scrolling, all the previous snapshots end up
// accumulating in the (for the GPU path) GpuImageDecodeCache, and then in the
// service transfer cache. The size of the service transfer cache is bounded,
// so on desktop this "only" causes a 256MiB memory spike, but it's completely
// wasted memory nonetheless.
snapshot_ =
cc::PaintImageBuilder::WithDefault()
.set_image(std::move(snapshot), cc::PaintImage::GetNextContentId())
.set_id(cc::PaintImage::GetNextId())
.set_no_cache(true)
.TakePaintImage();
if (!plugin_rect_.IsEmpty())
InvalidatePluginContainer();
}
void PdfViewWebPlugin::UpdateScaledValues() {
total_translate_ = snapshot_translate_;
if (viewport_to_dip_scale_ != 1.0f)
total_translate_.Scale(1.0f / viewport_to_dip_scale_);
}
void PdfViewWebPlugin::UpdateScale(float scale) {
CHECK_GT(scale, 0.0f);
viewport_to_dip_scale_ = scale;
UpdateScaledValues();
}
void PdfViewWebPlugin::UpdateLayerTransform(float scale,
const gfx::Vector2dF& translate) {
snapshot_translate_ = translate;
snapshot_scale_ = scale;
UpdateScaledValues();
}
void PdfViewWebPlugin::EnableAccessibility() {
if (accessibility_state_ == AccessibilityState::kLoaded)
return;
LoadOrReloadAccessibility();
}
SkBitmap PdfViewWebPlugin::GetImageForOcr(int32_t page_index,
int32_t page_object_index) {
return engine_->GetImageForOcr(page_index, page_object_index);
}
void PdfViewWebPlugin::HandleAccessibilityAction(
const AccessibilityActionData& action_data) {
engine_->HandleAccessibilityAction(action_data);
}
void PdfViewWebPlugin::LoadOrReloadAccessibility() {
if (accessibility_state_ == AccessibilityState::kOff) {
accessibility_state_ = AccessibilityState::kPending;
}
if (document_load_state_ == DocumentLoadState::kComplete) {
LoadAccessibility();
}
}
void PdfViewWebPlugin::OnViewportChanged(
const gfx::Rect& new_plugin_rect_in_css_pixel,
float new_device_scale) {
DCHECK_GT(new_device_scale, 0.0f);
css_plugin_rect_ = new_plugin_rect_in_css_pixel;
if (new_device_scale == device_scale_ &&
new_plugin_rect_in_css_pixel == plugin_rect_) {
return;
}
const float old_device_scale = device_scale_;
device_scale_ = new_device_scale;
plugin_rect_ = new_plugin_rect_in_css_pixel;
// TODO(crbug.com/40791703): We should try to avoid the downscaling in this
// calculation, perhaps by migrating off `plugin_dip_size_`.
plugin_dip_size_ = gfx::ScaleToEnclosingRect(new_plugin_rect_in_css_pixel,
1.0f / new_device_scale)
.size();
paint_manager_.SetSize(plugin_rect_.size(), device_scale_);
// Initialize the image data buffer if the context size changes.
const gfx::Size old_image_size = gfx::SkISizeToSize(image_data_.dimensions());
const gfx::Size new_image_size =
PaintManager::GetNewContextSize(old_image_size, plugin_rect_.size());
if (new_image_size != old_image_size) {
SkAlphaType alpha_type;
if (base::FeatureList::IsEnabled(
features::kPdfPaintManagerDrawsBackground)) {
alpha_type = kUnpremul_SkAlphaType;
} else {
alpha_type = kPremul_SkAlphaType;
}
image_data_.allocPixels(SkImageInfo::MakeN32(
new_image_size.width(), new_image_size.height(), alpha_type));
first_paint_ = true;
}
// Skip updating the geometry if the new image data buffer is empty.
if (image_data_.drawsNothing())
return;
OnGeometryChanged(zoom_, old_device_scale);
}
bool PdfViewWebPlugin::SelectAll() {
engine_->SelectAll();
return true;
}
bool PdfViewWebPlugin::Cut() {
if (!HasSelection() || !CanEditText())
return false;
engine_->ReplaceSelection("");
return true;
}
bool PdfViewWebPlugin::Paste(const blink::WebString& value) {
if (!CanEditText())
return false;
engine_->ReplaceSelection(value.Utf8());
return true;
}
bool PdfViewWebPlugin::Undo() {
if (!CanUndo())
return false;
engine_->Undo();
return true;
}
bool PdfViewWebPlugin::Redo() {
if (!CanRedo())
return false;
engine_->Redo();
return true;
}
bool PdfViewWebPlugin::HandleWebInputEvent(const blink::WebInputEvent& event) {
// Ignore user input in read-only mode.
if (engine_->IsReadOnly())
return false;
// `engine_` expects input events in device coordinates.
float viewport_to_device_scale = viewport_to_dip_scale_ * device_scale_;
std::unique_ptr<blink::WebInputEvent> transformed_event =
ui::TranslateAndScaleWebInputEvent(
event,
gfx::Vector2dF(-available_area_.x() / viewport_to_device_scale, 0),
viewport_to_device_scale);
const blink::WebInputEvent& event_to_handle =
transformed_event ? *transformed_event : event;
#if BUILDFLAG(ENABLE_PDF_INK2)
if (ink_module_ && ink_module_->HandleInputEvent(event_to_handle)) {
return true;
}
if (IsInAnnotationMode()) {
// When in annotation mode, only handle ink input events.
return false;
}
#endif
if (engine_->HandleInputEvent(event_to_handle))
return true;
// Middle click is used for scrolling and is handled by the container page.
if (blink::WebInputEvent::IsMouseEventType(event_to_handle.GetType()) &&
static_cast<const blink::WebMouseEvent&>(event_to_handle).button ==
blink::WebPointerProperties::Button::kMiddle) {
return false;
}
// Return true for unhandled clicks so the plugin takes focus.
return event_to_handle.GetType() == blink::WebInputEvent::Type::kMouseDown;
}
void PdfViewWebPlugin::HandleImeCommit(const blink::WebString& text) {
if (text.IsEmpty())
return;
std::u16string text16 = text.Utf16();
composition_text_.Reset();
size_t i = 0;
for (base::i18n::UTF16CharIterator iterator(text16); iterator.Advance();) {
blink::WebKeyboardEvent char_event(blink::WebInputEvent::Type::kChar,
blink::WebInputEvent::kNoModifiers,
ui::EventTimeForNow());
char_event.windows_key_code = text16[i];
char_event.native_key_code = text16[i];
for (const size_t char_start = i; i < iterator.array_pos(); ++i) {
char_event.text[i - char_start] = text16[i];
char_event.unmodified_text[i - char_start] = text16[i];
}
blink::WebCoalescedInputEvent input_event(char_event, ui::LatencyInfo());
ui::Cursor dummy_cursor_info;
HandleInputEvent(input_event, &dummy_cursor_info);
}
}
void PdfViewWebPlugin::OnInvokePrintDialog() {
client_->Print();
}
void PdfViewWebPlugin::ResetRecentlySentFindUpdate() {
recently_sent_find_update_ = false;
}
void PdfViewWebPlugin::RecordDocumentMetrics() {
if (!metrics_handler_)
return;
metrics_handler_->RecordDocumentMetrics(engine_->GetDocumentMetadata());
}
void PdfViewWebPlugin::SendAttachments() {
const std::vector<DocumentAttachmentInfo>& attachment_infos =
engine_->GetDocumentAttachmentInfoList();
if (attachment_infos.empty())
return;
base::Value::List attachments;
for (const DocumentAttachmentInfo& attachment_info : attachment_infos) {
// Send `size` as -1 to indicate that the attachment is too large to be
// downloaded.
const int size = attachment_info.size_bytes <= kMaximumSavedFileSize
? static_cast<int>(attachment_info.size_bytes)
: -1;
base::Value::Dict attachment;
attachment.Set("name", attachment_info.name);
attachment.Set("size", size);
attachment.Set("readable", attachment_info.is_readable);
attachments.Append(std::move(attachment));
}
base::Value::Dict message;
message.Set("type", "attachments");
message.Set("attachmentsData", std::move(attachments));
client_->PostMessage(std::move(message));
}
void PdfViewWebPlugin::SendBookmarks() {
base::Value::List bookmarks = engine_->GetBookmarks();
if (bookmarks.empty())
return;
base::Value::Dict message;
message.Set("type", "bookmarks");
message.Set("bookmarksData", std::move(bookmarks));
client_->PostMessage(std::move(message));
}
void PdfViewWebPlugin::SendExecutedEditCommand(std::string_view edit_command) {
base::Value::Dict message;
message.Set("type", "executedEditCommand");
message.Set("editCommand", edit_command);
client_->PostMessage(std::move(message));
}
void PdfViewWebPlugin::SendStartedFindInPage() {
base::Value::Dict message;
message.Set("type", "startedFindInPage");
client_->PostMessage(std::move(message));
}
void PdfViewWebPlugin::SendMetadata() {
base::Value::Dict metadata;
const DocumentMetadata& document_metadata = engine_->GetDocumentMetadata();
const std::string version = FormatPdfVersion(document_metadata.version);
if (!version.empty())
metadata.Set("version", version);
metadata.Set("fileSize", ui::FormatBytes(document_metadata.size_bytes));
metadata.Set("linearized", document_metadata.linearized);
if (!document_metadata.title.empty())
metadata.Set("title", document_metadata.title);
if (!document_metadata.author.empty())
metadata.Set("author", document_metadata.author);
if (!document_metadata.subject.empty())
metadata.Set("subject", document_metadata.subject);
if (!document_metadata.keywords.empty())
metadata.Set("keywords", document_metadata.keywords);
if (!document_metadata.creator.empty())
metadata.Set("creator", document_metadata.creator);
if (!document_metadata.producer.empty())
metadata.Set("producer", document_metadata.producer);
if (!document_metadata.creation_date.is_null()) {
metadata.Set("creationDate", base::TimeFormatShortDateAndTime(
document_metadata.creation_date));
}
if (!document_metadata.mod_date.is_null()) {
metadata.Set("modDate",
base::TimeFormatShortDateAndTime(document_metadata.mod_date));
}
metadata.Set("pageSize", FormatPageSize(engine_->GetUniformPageSizePoints()));
metadata.Set("canSerializeDocument",
IsSaveDataSizeValid(engine_->GetLoadedByteSize()));
base::Value::Dict message;
message.Set("type", "metadata");
message.Set("metadataData", std::move(metadata));
client_->PostMessage(std::move(message));
}
void PdfViewWebPlugin::SendLoadingProgress(double percentage) {
DCHECK(percentage == -1 || (percentage >= 0 && percentage <= 100));
last_progress_sent_ = percentage;
base::Value::Dict message;
message.Set("type", "loadProgress");
message.Set("progress", percentage);
client_->PostMessage(std::move(message));
}
void PdfViewWebPlugin::HandleResetPrintPreviewModeMessage(
const base::Value::Dict& message) {
const std::string& url = *message.FindString("url");
bool is_grayscale = message.FindBool("grayscale").value();
int print_preview_page_count = message.FindInt("pageCount").value();
// For security reasons, crash if `url` is not for Print Preview.
CHECK(IsPrintPreview());
CHECK(IsPrintPreviewUrl(url));
DCHECK_GE(print_preview_page_count, 0);
int page_index = ExtractPrintPreviewPageIndex(url);
if (IsPreviewingPDF(print_preview_page_count)) {
DCHECK_EQ(page_index, kCompletePDFIndex);
} else {
DCHECK_GE(page_index, 0);
}
print_preview_page_count_ = print_preview_page_count;
print_preview_loaded_page_count_ = 0;
url_ = url;
preview_pages_info_ = base::queue<PreviewPageInfo>();
preview_document_load_state_ = DocumentLoadState::kComplete;
document_load_state_ = DocumentLoadState::kLoading;
last_progress_sent_ = 0;
LoadUrl(url_, base::BindOnce(&PdfViewWebPlugin::DidOpen,
weak_factory_.GetWeakPtr()));
preview_engine_.reset();
// TODO(crbug.com/40193305): Figure out a more consistent way to preserve
// engine settings across a Print Preview reset.
engine_ = client_->CreateEngine(
this, PDFiumFormFiller::ScriptOption::kNoJavaScript);
engine_->ZoomUpdated(zoom_ * device_scale_);
engine_->PageOffsetUpdated(available_area_.OffsetFromOrigin());
engine_->PluginSizeUpdated(available_area_.size());
engine_->SetGrayscale(is_grayscale);
paint_manager_.InvalidateRect(gfx::Rect(plugin_rect_.size()));
}
void PdfViewWebPlugin::HandleLoadPreviewPageMessage(
const base::Value::Dict& message) {
const std::string& url = *message.FindString("url");
int dest_page_index = message.FindInt("index").value();
// For security reasons, crash if `url` is not for Print Preview.
CHECK(IsPrintPreview());
CHECK(IsPrintPreviewUrl(url));
DCHECK_GE(dest_page_index, 0);
DCHECK_LT(dest_page_index, print_preview_page_count_);
// Print Preview JS will send the loadPreviewPage message for every page,
// including the first page in the print preview, which has already been
// loaded when handing the resetPrintPreviewMode message. Just ignore it.
if (dest_page_index == 0)
return;
int src_page_index = ExtractPrintPreviewPageIndex(url);
DCHECK_GE(src_page_index, 0);
preview_pages_info_.push({.url = url, .dest_page_index = dest_page_index});
LoadAvailablePreviewPage();
}
void PdfViewWebPlugin::LoadAvailablePreviewPage() {
if (preview_pages_info_.empty() ||
document_load_state_ != DocumentLoadState::kComplete ||
preview_document_load_state_ == DocumentLoadState::kLoading) {
return;
}
preview_document_load_state_ = DocumentLoadState::kLoading;
const std::string& url = preview_pages_info_.front().url;
// Note that `last_progress_sent_` is not reset for preview page loads.
LoadUrl(url, base::BindOnce(&PdfViewWebPlugin::DidOpenPreview,
weak_factory_.GetWeakPtr()));
}
void PdfViewWebPlugin::DidOpenPreview(std::unique_ptr<UrlLoader> loader,
int32_t result) {
DCHECK_EQ(result, kSuccess);
// `preview_engine_` holds a `raw_ptr` to `preview_client_`.
// We need to explicitly destroy it before clobbering
// `preview_client_` to dodge lifetime issues.
preview_engine_.reset();
preview_client_ = std::make_unique<PreviewModeClient>(this);
preview_engine_ = client_->CreateEngine(
preview_client_.get(), PDFiumFormFiller::ScriptOption::kNoJavaScript);
preview_engine_->PluginSizeUpdated({});
preview_engine_->HandleDocumentLoad(std::move(loader), url_);
}
void PdfViewWebPlugin::PreviewDocumentLoadComplete() {
if (preview_document_load_state_ != DocumentLoadState::kLoading ||
preview_pages_info_.empty()) {
return;
}
preview_document_load_state_ = DocumentLoadState::kComplete;
int dest_page_index = preview_pages_info_.front().dest_page_index;
preview_pages_info_.pop();
engine_->AppendPage(preview_engine_.get(), dest_page_index);
++print_preview_loaded_page_count_;
LoadNextPreviewPage();
}
void PdfViewWebPlugin::PreviewDocumentLoadFailed() {
client_->RecordComputedAction("PDF.PreviewDocumentLoadFailure");
if (preview_document_load_state_ != DocumentLoadState::kLoading ||
preview_pages_info_.empty()) {
return;
}
// Even if a print preview page failed to load, keep going.
preview_document_load_state_ = DocumentLoadState::kFailed;
preview_pages_info_.pop();
++print_preview_loaded_page_count_;
LoadNextPreviewPage();
}
void PdfViewWebPlugin::LoadNextPreviewPage() {
if (!preview_pages_info_.empty()) {
DCHECK_LT(print_preview_loaded_page_count_, print_preview_page_count_);
LoadAvailablePreviewPage();
return;
}
if (print_preview_loaded_page_count_ == print_preview_page_count_)
SendPrintPreviewLoadedNotification();
}
void PdfViewWebPlugin::SendPrintPreviewLoadedNotification() {
base::Value::Dict message;
message.Set("type", "printPreviewLoaded");
client_->PostMessage(std::move(message));
}
void PdfViewWebPlugin::SendThumbnailForTesting(base::Value::Dict reply,
int page_index,
Thumbnail thumbnail) {
SendThumbnail(std::move(reply), page_index, std::move(thumbnail));
}
void PdfViewWebPlugin::SendThumbnail(base::Value::Dict reply,
int page_index,
Thumbnail thumbnail) {
DCHECK_EQ(*reply.FindString("type"), "getThumbnailReply");
DCHECK(reply.FindString("messageId"));
reply.Set("imageData", thumbnail.TakeData());
reply.Set("width", thumbnail.image_size().width());
reply.Set("height", thumbnail.image_size().height());
client_->PostMessage(std::move(reply));
#if BUILDFLAG(ENABLE_PDF_INK2)
if (ink_module_) {
GenerateAndSendInkThumbnail(page_index, thumbnail.image_size());
}
#endif
}
#if BUILDFLAG(ENABLE_PDF_INK2)
// static
std::unique_ptr<PdfInkModuleClient>
PdfViewWebPlugin::MaybeCreatePdfInkModuleClient(PdfViewWebPlugin& plugin) {
if (!base::FeatureList::IsEnabled(features::kPdfInk2)) {
return nullptr;
}
return std::make_unique<PdfInkModuleClientImpl>(plugin);
}
// static
std::unique_ptr<PdfInkModule> PdfViewWebPlugin::MaybeCreatePdfInkModule(
PdfInkModuleClient* client) {
if (!base::FeatureList::IsEnabled(features::kPdfInk2)) {
return nullptr;
}
return std::make_unique<PdfInkModule>(*client);
}
void PdfViewWebPlugin::GenerateAndSendInkThumbnail(int page_index,
const gfx::Size& size) {
CHECK(!size.IsEmpty());
CHECK(ink_module_);
auto info = SkImageInfo::Make(size.width(), size.height(),
kRGBA_8888_SkColorType, kUnpremul_SkAlphaType);
const size_t alloc_size = info.computeMinByteSize();
CHECK(!SkImageInfo::ByteSizeOverflowed(alloc_size));
std::vector<uint8_t> image_data(alloc_size);
SkBitmap sk_bitmap;
sk_bitmap.installPixels(info, image_data.data(), info.minRowBytes());
SkCanvas canvas(sk_bitmap);
if (!ink_module_->DrawThumbnail(canvas, page_index)) {
return;
}
base::Value::Dict message;
message.Set("type", "updateInk2Thumbnail");
message.Set("pageNumber", page_index + 1);
message.Set("imageData", std::move(image_data));
message.Set("width", size.width());
message.Set("height", size.height());
client_->PostMessage(std::move(message));
}
#endif // BUILDFLAG(ENABLE_PDF_INK2)
gfx::Point PdfViewWebPlugin::FrameToPdfCoordinates(
const gfx::PointF& frame_coordinates) const {
// TODO(crbug.com/40817151): Use methods on `blink::WebPluginContainer`.
return gfx::ToFlooredPoint(
gfx::ScalePoint(frame_coordinates, device_scale_)) -
gfx::Vector2d(available_area_.x(), 0);
}
AccessibilityDocInfo PdfViewWebPlugin::GetAccessibilityDocInfo() const {
AccessibilityDocInfo doc_info;
doc_info.page_count = engine_->GetNumberOfPages();
doc_info.text_accessible =
engine_->HasPermission(DocumentPermission::kCopyAccessible);
doc_info.text_copyable = engine_->HasPermission(DocumentPermission::kCopy);
return doc_info;
}
void PdfViewWebPlugin::PrepareAndSetAccessibilityPageInfo(int32_t page_index) {
// Ignore outdated or out of range calls.
if (page_index != next_accessibility_page_index_ || page_index < 0 ||
page_index >= engine_->GetNumberOfPages()) {
return;
}
// Wait for the page to be loaded and searchified before getting accessibility
// page info.
// Ensure page is loaded so that it can schedule a searchify operation if
// needed.
engine_->GetPage(page_index)->GetPage();
if (engine_->PageNeedsSearchify(page_index)) {
base::SingleThreadTaskRunner::GetCurrentDefault()->PostDelayedTask(
FROM_HERE,
base::BindOnce(&PdfViewWebPlugin::PrepareAndSetAccessibilityPageInfo,
weak_factory_.GetWeakPtr(), page_index),
kAccessibilityPageDelay * 10);
return;
}
++next_accessibility_page_index_;
AccessibilityPageInfo page_info;
std::vector<AccessibilityTextRunInfo> text_runs;
std::vector<AccessibilityCharInfo> chars;
AccessibilityPageObjects page_objects;
GetAccessibilityInfo(engine_.get(), page_index, page_info, text_runs, chars,
page_objects);
pdf_accessibility_data_handler_->SetAccessibilityPageInfo(
std::move(page_info), std::move(text_runs), std::move(chars),
std::move(page_objects));
// Schedule loading the next page if there's more.
if (page_index + 1 < engine_->GetNumberOfPages()) {
base::SingleThreadTaskRunner::GetCurrentDefault()->PostDelayedTask(
FROM_HERE,
base::BindOnce(&PdfViewWebPlugin::PrepareAndSetAccessibilityPageInfo,
weak_factory_.GetWeakPtr(), page_index + 1),
kAccessibilityPageDelay);
}
}
void PdfViewWebPlugin::PrepareAndSetAccessibilityViewportInfo() {
AccessibilityViewportInfo viewport_info;
viewport_info.offset = gfx::ScaleToFlooredPoint(available_area_.origin(),
1 / (device_scale_ * zoom_));
viewport_info.zoom = zoom_;
viewport_info.scale = device_scale_;
viewport_info.orientation =
static_cast<int32_t>(engine_->GetCurrentOrientation());
viewport_info.focus_info = {FocusObjectType::kNone, 0, 0};
engine_->GetSelection(&viewport_info.selection_start_page_index,
&viewport_info.selection_start_char_index,
&viewport_info.selection_end_page_index,
&viewport_info.selection_end_char_index);
pdf_accessibility_data_handler_->SetAccessibilityViewportInfo(
std::move(viewport_info));
}
void PdfViewWebPlugin::LoadAccessibility() {
accessibility_state_ = AccessibilityState::kLoaded;
// A new document layout will trigger the creation of a new accessibility
// tree, so `next_accessibility_page_index_` should be reset to ignore
// outdated asynchronous calls of PrepareAndSetAccessibilityPageInfo().
next_accessibility_page_index_ = 0;
pdf_accessibility_data_handler_->SetAccessibilityDocInfo(
GetAccessibilityDocInfo());
// Record whether the PDF is tagged when opened by an accessibility user.
if (metrics_handler_) {
metrics_handler_->RecordAccessibilityIsDocTagged(engine_->IsPDFDocTagged());
}
// If the document contents isn't accessible, don't send anything more.
if (!(engine_->HasPermission(DocumentPermission::kCopy) ||
engine_->HasPermission(DocumentPermission::kCopyAccessible))) {
return;
}
PrepareAndSetAccessibilityViewportInfo();
// Schedule loading the first page.
base::SingleThreadTaskRunner::GetCurrentDefault()->PostDelayedTask(
FROM_HERE,
base::BindOnce(&PdfViewWebPlugin::PrepareAndSetAccessibilityPageInfo,
weak_factory_.GetWeakPtr(), /*page_index=*/0),
kAccessibilityPageDelay);
}
} // namespace chrome_pdf