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
//
// DO NOT EDIT.  THIS FILE IS GENERATED FROM ../../../dist/idl/nsIContentViewer.idl
//


/// `interface nsIContentViewer : nsISupports`
///


// The actual type definition for the interface. This struct has methods
// declared on it which will call through its vtable. You never want to pass
// this type around by value, always pass it behind a reference.

#[repr(C)]
pub struct nsIContentViewer {
    vtable: *const nsIContentViewerVTable,

    /// This field is a phantomdata to ensure that the VTable type and any
    /// struct containing it is not safe to send across threads, as XPCOM is
    /// generally not threadsafe.
    ///
    /// XPCOM interfaces in general are not safe to send across threads.
    __nosync: ::std::marker::PhantomData<::std::rc::Rc<u8>>,
}

// Implementing XpCom for an interface exposes its IID, which allows for easy
// use of the `.query_interface<T>` helper method. This also defines that
// method for nsIContentViewer.
unsafe impl XpCom for nsIContentViewer {
    const IID: nsIID = nsID(0x2da17016, 0x7851, 0x4a45,
        [0xa7, 0xa8, 0x00, 0xb3, 0x60, 0xe0, 0x15, 0x95]);
}

// We need to implement the RefCounted trait so we can be used with `RefPtr`.
// This trait teaches `RefPtr` how to manage our memory.
unsafe impl RefCounted for nsIContentViewer {
    #[inline]
    unsafe fn addref(&self) {
        self.AddRef();
    }
    #[inline]
    unsafe fn release(&self) {
        self.Release();
    }
}

// This trait is implemented on all types which can be coerced to from nsIContentViewer.
// It is used in the implementation of `fn coerce<T>`. We hide it from the
// documentation, because it clutters it up a lot.
#[doc(hidden)]
pub trait nsIContentViewerCoerce {
    /// Cheaply cast a value of this type from a `nsIContentViewer`.
    fn coerce_from(v: &nsIContentViewer) -> &Self;
}

// The trivial implementation: We can obviously coerce ourselves to ourselves.
impl nsIContentViewerCoerce for nsIContentViewer {
    #[inline]
    fn coerce_from(v: &nsIContentViewer) -> &Self {
        v
    }
}

impl nsIContentViewer {
    /// Cast this `nsIContentViewer` to one of its base interfaces.
    #[inline]
    pub fn coerce<T: nsIContentViewerCoerce>(&self) -> &T {
        T::coerce_from(self)
    }
}

// Every interface struct type implements `Deref` to its base interface. This
// causes methods on the base interfaces to be directly avaliable on the
// object. For example, you can call `.AddRef` or `.QueryInterface` directly
// on any interface which inherits from `nsISupports`.
impl ::std::ops::Deref for nsIContentViewer {
    type Target = nsISupports;
    #[inline]
    fn deref(&self) -> &nsISupports {
        unsafe {
            ::std::mem::transmute(self)
        }
    }
}

// Ensure we can use .coerce() to cast to our base types as well. Any type which
// our base interface can coerce from should be coercable from us as well.
impl<T: nsISupportsCoerce> nsIContentViewerCoerce for T {
    #[inline]
    fn coerce_from(v: &nsIContentViewer) -> &Self {
        T::coerce_from(v)
    }
}

// This struct represents the interface's VTable. A pointer to a statically
// allocated version of this struct is at the beginning of every nsIContentViewer
// object. It contains one pointer field for each method in the interface. In
// the case where we can't generate a binding for a method, we include a void
// pointer.
#[doc(hidden)]
#[repr(C)]
pub struct nsIContentViewerVTable {
    /// We need to include the members from the base interface's vtable at the start
    /// of the VTable definition.
    pub __base: nsISupportsVTable,

    /* [noscript] void init (in nsIWidgetPtr aParentWidget, [const] in nsIntRectRef aBounds); */
    /// Unable to generate binding because `native type nsIWidget is unsupported`
    pub Init: *const ::libc::c_void,

    /* attribute nsIDocShell container; */
    pub GetContainer: unsafe extern "system" fn (this: *const nsIContentViewer, aContainer: *mut *const nsIDocShell) -> nsresult,

    /* attribute nsIDocShell container; */
    pub SetContainer: unsafe extern "system" fn (this: *const nsIContentViewer, aContainer: *const nsIDocShell) -> nsresult,

    /* [noscript,nostdcall,notxpcom] void loadStart (in nsIDocument aDoc); */
    /// Unable to generate binding because `nostdcall is unsupported`
    pub LoadStart: *const ::libc::c_void,

    /* void loadComplete (in nsresult aStatus); */
    pub LoadComplete: unsafe extern "system" fn (this: *const nsIContentViewer, aStatus: nsresult) -> nsresult,

    /* [noscript] readonly attribute boolean loadCompleted; */
    pub GetLoadCompleted: unsafe extern "system" fn (this: *const nsIContentViewer, aLoadCompleted: *mut bool) -> nsresult,

    /* [noscript] readonly attribute boolean isStopped; */
    pub GetIsStopped: unsafe extern "system" fn (this: *const nsIContentViewer, aIsStopped: *mut bool) -> nsresult,

    /* boolean permitUnload ([optional] in unsigned long aPermitUnloadFlags); */
    pub PermitUnload: unsafe extern "system" fn (this: *const nsIContentViewer, aPermitUnloadFlags: libc::uint32_t, _retval: *mut bool) -> nsresult,

    /* readonly attribute boolean inPermitUnload; */
    pub GetInPermitUnload: unsafe extern "system" fn (this: *const nsIContentViewer, aInPermitUnload: *mut bool) -> nsresult,

    /* [noscript,nostdcall] boolean permitUnloadInternal (inout unsigned long aPermitUnloadFlags); */
    /// Unable to generate binding because `nostdcall is unsupported`
    pub PermitUnloadInternal: *const ::libc::c_void,

    /* readonly attribute boolean beforeUnloadFiring; */
    pub GetBeforeUnloadFiring: unsafe extern "system" fn (this: *const nsIContentViewer, aBeforeUnloadFiring: *mut bool) -> nsresult,

    /* void pageHide (in boolean isUnload); */
    pub PageHide: unsafe extern "system" fn (this: *const nsIContentViewer, isUnload: bool) -> nsresult,

    /* void close (in nsISHEntry historyEntry); */
    pub Close: unsafe extern "system" fn (this: *const nsIContentViewer, historyEntry: *const nsISHEntry) -> nsresult,

    /* void destroy (); */
    pub Destroy: unsafe extern "system" fn (this: *const nsIContentViewer) -> nsresult,

    /* void stop (); */
    pub Stop: unsafe extern "system" fn (this: *const nsIContentViewer) -> nsresult,

    /* attribute nsIDOMDocument DOMDocument; */
    pub GetDOMDocument: unsafe extern "system" fn (this: *const nsIContentViewer, aDOMDocument: *mut *const nsIDOMDocument) -> nsresult,

    /* attribute nsIDOMDocument DOMDocument; */
    pub SetDOMDocument: unsafe extern "system" fn (this: *const nsIContentViewer, aDOMDocument: *const nsIDOMDocument) -> nsresult,

    /* [noscript,notxpcom] nsIDocument getDocument (); */
    pub GetDocument: unsafe extern "system" fn (this: *const nsIContentViewer) -> *const nsIDocument,

    /* [noscript] void getBounds (in nsIntRectRef aBounds); */
    /// Unable to generate binding because `native type nsIntRect is unsupported`
    pub GetBounds: *const ::libc::c_void,

    /* [noscript] void setBounds ([const] in nsIntRectRef aBounds); */
    /// Unable to generate binding because `native type nsIntRect is unsupported`
    pub SetBounds: *const ::libc::c_void,

    /* [noscript] void setBoundsWithFlags ([const] in nsIntRectRef aBounds, in unsigned long aFlags); */
    /// Unable to generate binding because `native type nsIntRect is unsupported`
    pub SetBoundsWithFlags: *const ::libc::c_void,

    /* [noscript] attribute nsIContentViewer previousViewer; */
    pub GetPreviousViewer: unsafe extern "system" fn (this: *const nsIContentViewer, aPreviousViewer: *mut *const nsIContentViewer) -> nsresult,

    /* [noscript] attribute nsIContentViewer previousViewer; */
    pub SetPreviousViewer: unsafe extern "system" fn (this: *const nsIContentViewer, aPreviousViewer: *const nsIContentViewer) -> nsresult,

    /* void move (in long aX, in long aY); */
    pub Move: unsafe extern "system" fn (this: *const nsIContentViewer, aX: libc::int32_t, aY: libc::int32_t) -> nsresult,

    /* void show (); */
    pub Show: unsafe extern "system" fn (this: *const nsIContentViewer) -> nsresult,

    /* void hide (); */
    pub Hide: unsafe extern "system" fn (this: *const nsIContentViewer) -> nsresult,

    /* attribute boolean sticky; */
    pub GetSticky: unsafe extern "system" fn (this: *const nsIContentViewer, aSticky: *mut bool) -> nsresult,

    /* attribute boolean sticky; */
    pub SetSticky: unsafe extern "system" fn (this: *const nsIContentViewer, aSticky: bool) -> nsresult,

    /* boolean requestWindowClose (); */
    pub RequestWindowClose: unsafe extern "system" fn (this: *const nsIContentViewer, _retval: *mut bool) -> nsresult,

    /* void open (in nsISupports aState, in nsISHEntry aSHEntry); */
    pub Open: unsafe extern "system" fn (this: *const nsIContentViewer, aState: *const nsISupports, aSHEntry: *const nsISHEntry) -> nsresult,

    /* void clearHistoryEntry (); */
    pub ClearHistoryEntry: unsafe extern "system" fn (this: *const nsIContentViewer) -> nsresult,

    /* void setPageMode (in boolean aPageMode, in nsIPrintSettings aPrintSettings); */
    pub SetPageMode: unsafe extern "system" fn (this: *const nsIContentViewer, aPageMode: bool, aPrintSettings: *const nsIPrintSettings) -> nsresult,

    /* readonly attribute nsISHEntry historyEntry; */
    pub GetHistoryEntry: unsafe extern "system" fn (this: *const nsIContentViewer, aHistoryEntry: *mut *const nsISHEntry) -> nsresult,

    /* readonly attribute boolean isTabModalPromptAllowed; */
    pub GetIsTabModalPromptAllowed: unsafe extern "system" fn (this: *const nsIContentViewer, aIsTabModalPromptAllowed: *mut bool) -> nsresult,

    /* attribute boolean isHidden; */
    pub GetIsHidden: unsafe extern "system" fn (this: *const nsIContentViewer, aIsHidden: *mut bool) -> nsresult,

    /* attribute boolean isHidden; */
    pub SetIsHidden: unsafe extern "system" fn (this: *const nsIContentViewer, aIsHidden: bool) -> nsresult,

    /* [noscript] readonly attribute nsIPresShellPtr presShell; */
    /// Unable to generate binding because `native type nsIPresShell is unsupported`
    pub GetPresShell: *const ::libc::c_void,

    /* [noscript] readonly attribute nsPresContextPtr presContext; */
    /// Unable to generate binding because `native type nsPresContext is unsupported`
    pub GetPresContext: *const ::libc::c_void,

    /* [noscript] void setDocumentInternal (in nsIDocument aDocument, in boolean aForceReuseInnerWindow); */
    pub SetDocumentInternal: unsafe extern "system" fn (this: *const nsIContentViewer, aDocument: *const nsIDocument, aForceReuseInnerWindow: bool) -> nsresult,

    /* [noscript,nostdcall,notxpcom] nsViewPtr findContainerView (); */
    /// Unable to generate binding because `nostdcall is unsupported`
    pub FindContainerView: *const ::libc::c_void,

    /* [noscript,nostdcall,notxpcom] void setNavigationTiming (in nsDOMNavigationTimingPtr aTiming); */
    /// Unable to generate binding because `native type nsDOMNavigationTiming is unsupported`
    pub SetNavigationTiming: *const ::libc::c_void,

    /* void scrollToNode (in nsIDOMNode node); */
    pub ScrollToNode: unsafe extern "system" fn (this: *const nsIContentViewer, node: *const nsIDOMNode) -> nsresult,

    /* attribute float textZoom; */
    pub GetTextZoom: unsafe extern "system" fn (this: *const nsIContentViewer, aTextZoom: *mut libc::c_float) -> nsresult,

    /* attribute float textZoom; */
    pub SetTextZoom: unsafe extern "system" fn (this: *const nsIContentViewer, aTextZoom: libc::c_float) -> nsresult,

    /* readonly attribute float effectiveTextZoom; */
    pub GetEffectiveTextZoom: unsafe extern "system" fn (this: *const nsIContentViewer, aEffectiveTextZoom: *mut libc::c_float) -> nsresult,

    /* attribute float fullZoom; */
    pub GetFullZoom: unsafe extern "system" fn (this: *const nsIContentViewer, aFullZoom: *mut libc::c_float) -> nsresult,

    /* attribute float fullZoom; */
    pub SetFullZoom: unsafe extern "system" fn (this: *const nsIContentViewer, aFullZoom: libc::c_float) -> nsresult,

    /* readonly attribute float deviceFullZoom; */
    pub GetDeviceFullZoom: unsafe extern "system" fn (this: *const nsIContentViewer, aDeviceFullZoom: *mut libc::c_float) -> nsresult,

    /* attribute float overrideDPPX; */
    pub GetOverrideDPPX: unsafe extern "system" fn (this: *const nsIContentViewer, aOverrideDPPX: *mut libc::c_float) -> nsresult,

    /* attribute float overrideDPPX; */
    pub SetOverrideDPPX: unsafe extern "system" fn (this: *const nsIContentViewer, aOverrideDPPX: libc::c_float) -> nsresult,

    /* attribute boolean authorStyleDisabled; */
    pub GetAuthorStyleDisabled: unsafe extern "system" fn (this: *const nsIContentViewer, aAuthorStyleDisabled: *mut bool) -> nsresult,

    /* attribute boolean authorStyleDisabled; */
    pub SetAuthorStyleDisabled: unsafe extern "system" fn (this: *const nsIContentViewer, aAuthorStyleDisabled: bool) -> nsresult,

    /* attribute ACString forceCharacterSet; */
    pub GetForceCharacterSet: unsafe extern "system" fn (this: *const nsIContentViewer, aForceCharacterSet: &mut ::nsstring::nsACString) -> nsresult,

    /* attribute ACString forceCharacterSet; */
    pub SetForceCharacterSet: unsafe extern "system" fn (this: *const nsIContentViewer, aForceCharacterSet: &::nsstring::nsACString) -> nsresult,

    /* attribute ACString hintCharacterSet; */
    pub GetHintCharacterSet: unsafe extern "system" fn (this: *const nsIContentViewer, aHintCharacterSet: &mut ::nsstring::nsACString) -> nsresult,

    /* attribute ACString hintCharacterSet; */
    pub SetHintCharacterSet: unsafe extern "system" fn (this: *const nsIContentViewer, aHintCharacterSet: &::nsstring::nsACString) -> nsresult,

    /* attribute int32_t hintCharacterSetSource; */
    pub GetHintCharacterSetSource: unsafe extern "system" fn (this: *const nsIContentViewer, aHintCharacterSetSource: *mut int32_t) -> nsresult,

    /* attribute int32_t hintCharacterSetSource; */
    pub SetHintCharacterSetSource: unsafe extern "system" fn (this: *const nsIContentViewer, aHintCharacterSetSource: int32_t) -> nsresult,

    /* void getContentSize (out long width, out long height); */
    pub GetContentSize: unsafe extern "system" fn (this: *const nsIContentViewer, width: *mut libc::int32_t, height: *mut libc::int32_t) -> nsresult,

    /* void getContentSizeConstrained (in long maxWidth, in long maxHeight, out long width, out long height); */
    pub GetContentSizeConstrained: unsafe extern "system" fn (this: *const nsIContentViewer, maxWidth: libc::int32_t, maxHeight: libc::int32_t, width: *mut libc::int32_t, height: *mut libc::int32_t) -> nsresult,

    /* attribute long minFontSize; */
    pub GetMinFontSize: unsafe extern "system" fn (this: *const nsIContentViewer, aMinFontSize: *mut libc::int32_t) -> nsresult,

    /* attribute long minFontSize; */
    pub SetMinFontSize: unsafe extern "system" fn (this: *const nsIContentViewer, aMinFontSize: libc::int32_t) -> nsresult,

    /* [noscript] void appendSubtree (in nsIContentViewerTArray array); */
    /// Unable to generate binding because `native type nsTArray<nsCOMPtr<nsIContentViewer> > is unsupported`
    pub AppendSubtree: *const ::libc::c_void,

    /* void pausePainting (); */
    pub PausePainting: unsafe extern "system" fn (this: *const nsIContentViewer) -> nsresult,

    /* void resumePainting (); */
    pub ResumePainting: unsafe extern "system" fn (this: *const nsIContentViewer) -> nsresult,

    /* void emulateMedium (in AString aMediaType); */
    pub EmulateMedium: unsafe extern "system" fn (this: *const nsIContentViewer, aMediaType: &::nsstring::nsAString) -> nsresult,

    /* void stopEmulatingMedium (); */
    pub StopEmulatingMedium: unsafe extern "system" fn (this: *const nsIContentViewer) -> nsresult,

    /* [noscript,notxpcom] Encoding getHintCharset (); */
    /// Unable to generate binding because `native type const mozilla::Encoding is unsupported`
    pub GetHintCharset: *const ::libc::c_void,

    /* [noscript,notxpcom] void setHintCharset (in Encoding aEncoding); */
    /// Unable to generate binding because `native type const mozilla::Encoding is unsupported`
    pub SetHintCharset: *const ::libc::c_void,

    /* [noscript,notxpcom] Encoding getForceCharset (); */
    /// Unable to generate binding because `native type const mozilla::Encoding is unsupported`
    pub GetForceCharset: *const ::libc::c_void,

    /* [noscript,notxpcom] void setForceCharset (in Encoding aEncoding); */
    /// Unable to generate binding because `native type const mozilla::Encoding is unsupported`
    pub SetForceCharset: *const ::libc::c_void,
}


// The implementations of the function wrappers which are exposed to rust code.
// Call these methods rather than manually calling through the VTable struct.
impl nsIContentViewer {
    /// ```text
    /// /**
    ///    * aPermitUnloadFlags are passed to PermitUnload to indicate what action to take
    ///    * if a beforeunload handler wants to prompt the user.  It is also used by
    ///    * permitUnloadInternal to ensure we only prompt once.
    ///    *
    ///    * ePrompt: Prompt and return the user's choice (default).
    ///    * eDontPromptAndDontUnload: Don't prompt and return false (unload not permitted)
    ///    *                           if the document (or its children) asks us to prompt.
    ///    * eDontPromptAndUnload: Don't prompt and return true (unload permitted) no matter what.
    ///    */
    /// ```
    ///

    pub const ePrompt: i64 = 0;


    pub const eDontPromptAndDontUnload: i64 = 1;


    pub const eDontPromptAndUnload: i64 = 2;

    /// ```text
    /// /**
    ///    * The 'aFlags' argument to setBoundsWithFlags is a set of these bits.
    ///    */
    /// ```
    ///

    pub const eDelayResize: i64 = 1;


    /// `[noscript] void init (in nsIWidgetPtr aParentWidget, [const] in nsIntRectRef aBounds);`
    const _Init: () = ();


    /// `attribute nsIDocShell container;`
    #[inline]
    pub unsafe fn GetContainer(&self, aContainer: *mut *const nsIDocShell) -> nsresult {
        ((*self.vtable).GetContainer)(self, aContainer)
    }



    /// `attribute nsIDocShell container;`
    #[inline]
    pub unsafe fn SetContainer(&self, aContainer: *const nsIDocShell) -> nsresult {
        ((*self.vtable).SetContainer)(self, aContainer)
    }



    /// `[noscript,nostdcall,notxpcom] void loadStart (in nsIDocument aDoc);`
    const _LoadStart: () = ();


    /// `void loadComplete (in nsresult aStatus);`
    #[inline]
    pub unsafe fn LoadComplete(&self, aStatus: nsresult) -> nsresult {
        ((*self.vtable).LoadComplete)(self, aStatus)
    }



    /// `[noscript] readonly attribute boolean loadCompleted;`
    #[inline]
    pub unsafe fn GetLoadCompleted(&self, aLoadCompleted: *mut bool) -> nsresult {
        ((*self.vtable).GetLoadCompleted)(self, aLoadCompleted)
    }



    /// `[noscript] readonly attribute boolean isStopped;`
    #[inline]
    pub unsafe fn GetIsStopped(&self, aIsStopped: *mut bool) -> nsresult {
        ((*self.vtable).GetIsStopped)(self, aIsStopped)
    }


    /// ```text
    /// /**
    ///    * Overload PermitUnload method for C++ consumers with no aPermitUnloadFlags
    ///    * argument.
    ///    */
    /// /**
    ///    * Checks if the document wants to prevent unloading by firing beforeunload on
    ///    * the document, and if it does, takes action directed by aPermitUnloadFlags.
    ///    * The result is returned.
    ///    */
    /// ```
    ///

    /// `boolean permitUnload ([optional] in unsigned long aPermitUnloadFlags);`
    #[inline]
    pub unsafe fn PermitUnload(&self, aPermitUnloadFlags: libc::uint32_t, _retval: *mut bool) -> nsresult {
        ((*self.vtable).PermitUnload)(self, aPermitUnloadFlags, _retval)
    }


    /// ```text
    /// /**
    ///    * Exposes whether we're blocked in a call to permitUnload.
    ///    */
    /// ```
    ///

    /// `readonly attribute boolean inPermitUnload;`
    #[inline]
    pub unsafe fn GetInPermitUnload(&self, aInPermitUnload: *mut bool) -> nsresult {
        ((*self.vtable).GetInPermitUnload)(self, aInPermitUnload)
    }


    /// ```text
    /// /**
    ///    * As above, but this passes around the aPermitUnloadFlags argument to keep
    ///    * track of whether the user has responded to a prompt.
    ///    * Used internally by the scriptable version to ensure we only prompt once.
    ///    */
    /// ```
    ///

    /// `[noscript,nostdcall] boolean permitUnloadInternal (inout unsigned long aPermitUnloadFlags);`
    const _PermitUnloadInternal: () = ();

    /// ```text
    /// /**
    ///    * Exposes whether we're in the process of firing the beforeunload event.
    ///    * In this case, the corresponding docshell will not allow navigation.
    ///    */
    /// ```
    ///

    /// `readonly attribute boolean beforeUnloadFiring;`
    #[inline]
    pub unsafe fn GetBeforeUnloadFiring(&self, aBeforeUnloadFiring: *mut bool) -> nsresult {
        ((*self.vtable).GetBeforeUnloadFiring)(self, aBeforeUnloadFiring)
    }



    /// `void pageHide (in boolean isUnload);`
    #[inline]
    pub unsafe fn PageHide(&self, isUnload: bool) -> nsresult {
        ((*self.vtable).PageHide)(self, isUnload)
    }


    /// ```text
    /// /**
    ///    * All users of a content viewer are responsible for calling both
    ///    * close() and destroy(), in that order.
    ///    *
    ///    * close() should be called when the load of a new page for the next
    ///    * content viewer begins, and destroy() should be called when the next
    ///    * content viewer replaces this one.
    ///    *
    ///    * |historyEntry| sets the session history entry for the content viewer.  If
    ///    * this is null, then Destroy() will be called on the document by close().
    ///    * If it is non-null, the document will not be destroyed, and the following
    ///    * actions will happen when destroy() is called (*):
    ///    *  - Sanitize() will be called on the viewer's document
    ///    *  - The content viewer will set the contentViewer property on the
    ///    *    history entry, and release its reference (ownership reversal).
    ///    *  - hide() will be called, and no further destruction will happen.
    ///    *
    ///    *  (*) unless the document is currently being printed, in which case
    ///    *      it will never be saved in session history.
    ///    *
    ///    */
    /// ```
    ///

    /// `void close (in nsISHEntry historyEntry);`
    #[inline]
    pub unsafe fn Close(&self, historyEntry: *const nsISHEntry) -> nsresult {
        ((*self.vtable).Close)(self, historyEntry)
    }



    /// `void destroy ();`
    #[inline]
    pub unsafe fn Destroy(&self, ) -> nsresult {
        ((*self.vtable).Destroy)(self, )
    }



    /// `void stop ();`
    #[inline]
    pub unsafe fn Stop(&self, ) -> nsresult {
        ((*self.vtable).Stop)(self, )
    }



    /// `attribute nsIDOMDocument DOMDocument;`
    #[inline]
    pub unsafe fn GetDOMDocument(&self, aDOMDocument: *mut *const nsIDOMDocument) -> nsresult {
        ((*self.vtable).GetDOMDocument)(self, aDOMDocument)
    }



    /// `attribute nsIDOMDocument DOMDocument;`
    #[inline]
    pub unsafe fn SetDOMDocument(&self, aDOMDocument: *const nsIDOMDocument) -> nsresult {
        ((*self.vtable).SetDOMDocument)(self, aDOMDocument)
    }


    /// ```text
    /// /**
    ///    * Returns DOMDocument as nsIDocument and without addrefing.
    ///    */
    /// ```
    ///

    /// `[noscript,notxpcom] nsIDocument getDocument ();`
    #[inline]
    pub unsafe fn GetDocument(&self, ) -> *const nsIDocument {
        ((*self.vtable).GetDocument)(self, )
    }



    /// `[noscript] void getBounds (in nsIntRectRef aBounds);`
    const _GetBounds: () = ();


    /// `[noscript] void setBounds ([const] in nsIntRectRef aBounds);`
    const _SetBounds: () = ();


    /// `[noscript] void setBoundsWithFlags ([const] in nsIntRectRef aBounds, in unsigned long aFlags);`
    const _SetBoundsWithFlags: () = ();

    /// ```text
    /// /**
    ///    * The previous content viewer, which has been |close|d but not
    ///    * |destroy|ed.
    ///    */
    /// ```
    ///

    /// `[noscript] attribute nsIContentViewer previousViewer;`
    #[inline]
    pub unsafe fn GetPreviousViewer(&self, aPreviousViewer: *mut *const nsIContentViewer) -> nsresult {
        ((*self.vtable).GetPreviousViewer)(self, aPreviousViewer)
    }


    /// ```text
    /// /**
    ///    * The previous content viewer, which has been |close|d but not
    ///    * |destroy|ed.
    ///    */
    /// ```
    ///

    /// `[noscript] attribute nsIContentViewer previousViewer;`
    #[inline]
    pub unsafe fn SetPreviousViewer(&self, aPreviousViewer: *const nsIContentViewer) -> nsresult {
        ((*self.vtable).SetPreviousViewer)(self, aPreviousViewer)
    }



    /// `void move (in long aX, in long aY);`
    #[inline]
    pub unsafe fn Move(&self, aX: libc::int32_t, aY: libc::int32_t) -> nsresult {
        ((*self.vtable).Move)(self, aX, aY)
    }



    /// `void show ();`
    #[inline]
    pub unsafe fn Show(&self, ) -> nsresult {
        ((*self.vtable).Show)(self, )
    }



    /// `void hide ();`
    #[inline]
    pub unsafe fn Hide(&self, ) -> nsresult {
        ((*self.vtable).Hide)(self, )
    }



    /// `attribute boolean sticky;`
    #[inline]
    pub unsafe fn GetSticky(&self, aSticky: *mut bool) -> nsresult {
        ((*self.vtable).GetSticky)(self, aSticky)
    }



    /// `attribute boolean sticky;`
    #[inline]
    pub unsafe fn SetSticky(&self, aSticky: bool) -> nsresult {
        ((*self.vtable).SetSticky)(self, aSticky)
    }



    /// `boolean requestWindowClose ();`
    #[inline]
    pub unsafe fn RequestWindowClose(&self, _retval: *mut bool) -> nsresult {
        ((*self.vtable).RequestWindowClose)(self, _retval)
    }


    /// ```text
    /// /**
    ///    * Attach the content viewer to its DOM window and docshell.
    ///    * @param aState A state object that might be useful in attaching the DOM
    ///    *               window.
    ///    * @param aSHEntry The history entry that the content viewer was stored in.
    ///    *                 The entry must have the docshells for all of the child
    ///    *                 documents stored in its child shell list.
    ///    */
    /// ```
    ///

    /// `void open (in nsISupports aState, in nsISHEntry aSHEntry);`
    #[inline]
    pub unsafe fn Open(&self, aState: *const nsISupports, aSHEntry: *const nsISHEntry) -> nsresult {
        ((*self.vtable).Open)(self, aState, aSHEntry)
    }


    /// ```text
    /// /**
    ///    * Clears the current history entry.  This is used if we need to clear out
    ///    * the saved presentation state.
    ///    */
    /// ```
    ///

    /// `void clearHistoryEntry ();`
    #[inline]
    pub unsafe fn ClearHistoryEntry(&self, ) -> nsresult {
        ((*self.vtable).ClearHistoryEntry)(self, )
    }


    /// ```text
    /// /**
    ///    * Change the layout to view the document with page layout (like print preview), but
    ///    * dynamic and editable (like Galley layout).
    ///    */
    /// ```
    ///

    /// `void setPageMode (in boolean aPageMode, in nsIPrintSettings aPrintSettings);`
    #[inline]
    pub unsafe fn SetPageMode(&self, aPageMode: bool, aPrintSettings: *const nsIPrintSettings) -> nsresult {
        ((*self.vtable).SetPageMode)(self, aPageMode, aPrintSettings)
    }


    /// ```text
    /// /**
    ///    * Get the history entry that this viewer will save itself into when
    ///    * destroyed.  Can return null
    ///    */
    /// ```
    ///

    /// `readonly attribute nsISHEntry historyEntry;`
    #[inline]
    pub unsafe fn GetHistoryEntry(&self, aHistoryEntry: *mut *const nsISHEntry) -> nsresult {
        ((*self.vtable).GetHistoryEntry)(self, aHistoryEntry)
    }


    /// ```text
    /// /**
    ///    * Indicates when we're in a state where content shouldn't be allowed to
    ///    * trigger a tab-modal prompt (as opposed to a window-modal prompt) because
    ///    * we're part way through some operation (eg beforeunload) that shouldn't be
    ///    * rentrant if the user closes the tab while the prompt is showing.
    ///    * See bug 613800.
    ///    */
    /// ```
    ///

    /// `readonly attribute boolean isTabModalPromptAllowed;`
    #[inline]
    pub unsafe fn GetIsTabModalPromptAllowed(&self, aIsTabModalPromptAllowed: *mut bool) -> nsresult {
        ((*self.vtable).GetIsTabModalPromptAllowed)(self, aIsTabModalPromptAllowed)
    }


    /// ```text
    /// /**
    ///    * Returns whether this content viewer is in a hidden state.
    ///    *
    ///    * @note Only Gecko internal code should set the attribute!
    ///    */
    /// ```
    ///

    /// `attribute boolean isHidden;`
    #[inline]
    pub unsafe fn GetIsHidden(&self, aIsHidden: *mut bool) -> nsresult {
        ((*self.vtable).GetIsHidden)(self, aIsHidden)
    }


    /// ```text
    /// /**
    ///    * Returns whether this content viewer is in a hidden state.
    ///    *
    ///    * @note Only Gecko internal code should set the attribute!
    ///    */
    /// ```
    ///

    /// `attribute boolean isHidden;`
    #[inline]
    pub unsafe fn SetIsHidden(&self, aIsHidden: bool) -> nsresult {
        ((*self.vtable).SetIsHidden)(self, aIsHidden)
    }



    /// `[noscript] readonly attribute nsIPresShellPtr presShell;`
    const _GetPresShell: () = ();


    /// `[noscript] readonly attribute nsPresContextPtr presContext;`
    const _GetPresContext: () = ();


    /// `[noscript] void setDocumentInternal (in nsIDocument aDocument, in boolean aForceReuseInnerWindow);`
    #[inline]
    pub unsafe fn SetDocumentInternal(&self, aDocument: *const nsIDocument, aForceReuseInnerWindow: bool) -> nsresult {
        ((*self.vtable).SetDocumentInternal)(self, aDocument, aForceReuseInnerWindow)
    }


    /// ```text
    /// /**
    ///    * Find the view to use as the container view for MakeWindow. Returns
    ///    * null if this will be the root of a view manager hierarchy. In that
    ///    * case, if mParentWidget is null then this document should not even
    ///    * be displayed.
    ///    */
    /// ```
    ///

    /// `[noscript,nostdcall,notxpcom] nsViewPtr findContainerView ();`
    const _FindContainerView: () = ();

    /// ```text
    /// /**
    ///    * Set collector for navigation timing data (load, unload events).
    ///    */
    /// ```
    ///

    /// `[noscript,nostdcall,notxpcom] void setNavigationTiming (in nsDOMNavigationTimingPtr aTiming);`
    const _SetNavigationTiming: () = ();


    /// `void scrollToNode (in nsIDOMNode node);`
    #[inline]
    pub unsafe fn ScrollToNode(&self, node: *const nsIDOMNode) -> nsresult {
        ((*self.vtable).ScrollToNode)(self, node)
    }


    /// ```text
    /// /** The amount by which to scale all text. Default is 1.0. */
    /// ```
    ///

    /// `attribute float textZoom;`
    #[inline]
    pub unsafe fn GetTextZoom(&self, aTextZoom: *mut libc::c_float) -> nsresult {
        ((*self.vtable).GetTextZoom)(self, aTextZoom)
    }


    /// ```text
    /// /** The amount by which to scale all text. Default is 1.0. */
    /// ```
    ///

    /// `attribute float textZoom;`
    #[inline]
    pub unsafe fn SetTextZoom(&self, aTextZoom: libc::c_float) -> nsresult {
        ((*self.vtable).SetTextZoom)(self, aTextZoom)
    }


    /// ```text
    /// /** The actual text zoom in effect, as modified by the system font scale. */
    /// ```
    ///

    /// `readonly attribute float effectiveTextZoom;`
    #[inline]
    pub unsafe fn GetEffectiveTextZoom(&self, aEffectiveTextZoom: *mut libc::c_float) -> nsresult {
        ((*self.vtable).GetEffectiveTextZoom)(self, aEffectiveTextZoom)
    }


    /// ```text
    /// /** The amount by which to scale all lengths. Default is 1.0. */
    /// ```
    ///

    /// `attribute float fullZoom;`
    #[inline]
    pub unsafe fn GetFullZoom(&self, aFullZoom: *mut libc::c_float) -> nsresult {
        ((*self.vtable).GetFullZoom)(self, aFullZoom)
    }


    /// ```text
    /// /** The amount by which to scale all lengths. Default is 1.0. */
    /// ```
    ///

    /// `attribute float fullZoom;`
    #[inline]
    pub unsafe fn SetFullZoom(&self, aFullZoom: libc::c_float) -> nsresult {
        ((*self.vtable).SetFullZoom)(self, aFullZoom)
    }


    /// ```text
    /// /**
    ///    * The actual full zoom in effect, as modified by the device context.
    ///    * For a requested full zoom, the device context may choose a slightly
    ///    * different effectiveFullZoom to accomodate integer rounding of app units
    ///    * per dev pixel. This property returns the actual zoom amount in use,
    ///    * though it may not be good user experience to report that a requested zoom
    ///    * of 90% is actually 89.1%, for example. This value is provided primarily to
    ///    * support media queries of dppx values, because those queries are matched
    ///    * against the actual native device pixel ratio and the actual full zoom.
    ///    */
    /// ```
    ///

    /// `readonly attribute float deviceFullZoom;`
    #[inline]
    pub unsafe fn GetDeviceFullZoom(&self, aDeviceFullZoom: *mut libc::c_float) -> nsresult {
        ((*self.vtable).GetDeviceFullZoom)(self, aDeviceFullZoom)
    }


    /// ```text
    /// /**
    ///    * The value used to override devicePixelRatio and media queries dppx.
    ///    * Default is 0.0, that means no overriding is done (only a positive value
        ///    * is applied).
    ///    */
    /// ```
    ///

    /// `attribute float overrideDPPX;`
    #[inline]
    pub unsafe fn GetOverrideDPPX(&self, aOverrideDPPX: *mut libc::c_float) -> nsresult {
        ((*self.vtable).GetOverrideDPPX)(self, aOverrideDPPX)
    }


    /// ```text
    /// /**
    ///    * The value used to override devicePixelRatio and media queries dppx.
    ///    * Default is 0.0, that means no overriding is done (only a positive value
        ///    * is applied).
    ///    */
    /// ```
    ///

    /// `attribute float overrideDPPX;`
    #[inline]
    pub unsafe fn SetOverrideDPPX(&self, aOverrideDPPX: libc::c_float) -> nsresult {
        ((*self.vtable).SetOverrideDPPX)(self, aOverrideDPPX)
    }


    /// ```text
    /// /** Disable entire author style level (including HTML presentation hints) */
    /// ```
    ///

    /// `attribute boolean authorStyleDisabled;`
    #[inline]
    pub unsafe fn GetAuthorStyleDisabled(&self, aAuthorStyleDisabled: *mut bool) -> nsresult {
        ((*self.vtable).GetAuthorStyleDisabled)(self, aAuthorStyleDisabled)
    }


    /// ```text
    /// /** Disable entire author style level (including HTML presentation hints) */
    /// ```
    ///

    /// `attribute boolean authorStyleDisabled;`
    #[inline]
    pub unsafe fn SetAuthorStyleDisabled(&self, aAuthorStyleDisabled: bool) -> nsresult {
        ((*self.vtable).SetAuthorStyleDisabled)(self, aAuthorStyleDisabled)
    }


    /// ```text
    /// /**
    ///    * XXX comm-central only: bug 829543. Not the Character Encoding menu in
    ///    * browser!
    ///    */
    /// ```
    ///

    /// `attribute ACString forceCharacterSet;`
    #[inline]
    pub unsafe fn GetForceCharacterSet(&self, aForceCharacterSet: &mut ::nsstring::nsACString) -> nsresult {
        ((*self.vtable).GetForceCharacterSet)(self, aForceCharacterSet)
    }


    /// ```text
    /// /**
    ///    * XXX comm-central only: bug 829543. Not the Character Encoding menu in
    ///    * browser!
    ///    */
    /// ```
    ///

    /// `attribute ACString forceCharacterSet;`
    #[inline]
    pub unsafe fn SetForceCharacterSet(&self, aForceCharacterSet: &::nsstring::nsACString) -> nsresult {
        ((*self.vtable).SetForceCharacterSet)(self, aForceCharacterSet)
    }


    /// ```text
    /// /**
    ///    * XXX comm-central only: bug 829543.
    ///    */
    /// ```
    ///

    /// `attribute ACString hintCharacterSet;`
    #[inline]
    pub unsafe fn GetHintCharacterSet(&self, aHintCharacterSet: &mut ::nsstring::nsACString) -> nsresult {
        ((*self.vtable).GetHintCharacterSet)(self, aHintCharacterSet)
    }


    /// ```text
    /// /**
    ///    * XXX comm-central only: bug 829543.
    ///    */
    /// ```
    ///

    /// `attribute ACString hintCharacterSet;`
    #[inline]
    pub unsafe fn SetHintCharacterSet(&self, aHintCharacterSet: &::nsstring::nsACString) -> nsresult {
        ((*self.vtable).SetHintCharacterSet)(self, aHintCharacterSet)
    }


    /// ```text
    /// /**
    ///    * XXX comm-central only: bug 829543.
    ///    */
    /// ```
    ///

    /// `attribute int32_t hintCharacterSetSource;`
    #[inline]
    pub unsafe fn GetHintCharacterSetSource(&self, aHintCharacterSetSource: *mut int32_t) -> nsresult {
        ((*self.vtable).GetHintCharacterSetSource)(self, aHintCharacterSetSource)
    }


    /// ```text
    /// /**
    ///    * XXX comm-central only: bug 829543.
    ///    */
    /// ```
    ///

    /// `attribute int32_t hintCharacterSetSource;`
    #[inline]
    pub unsafe fn SetHintCharacterSetSource(&self, aHintCharacterSetSource: int32_t) -> nsresult {
        ((*self.vtable).SetHintCharacterSetSource)(self, aHintCharacterSetSource)
    }


    /// ```text
    /// /**
    ///    * Requests the size of the content to the container.
    ///    */
    /// ```
    ///

    /// `void getContentSize (out long width, out long height);`
    #[inline]
    pub unsafe fn GetContentSize(&self, width: *mut libc::int32_t, height: *mut libc::int32_t) -> nsresult {
        ((*self.vtable).GetContentSize)(self, width, height)
    }


    /// ```text
    /// /**
    ///    * Returns the preferred width and height of the content, constrained to the
    ///    * given maximum values. If either maxWidth or maxHeight is less than zero,
    ///    * that dimension is not constrained.
    ///    *
    ///    * All input and output values are in device pixels, rather than CSS pixels.
    ///    */
    /// ```
    ///

    /// `void getContentSizeConstrained (in long maxWidth, in long maxHeight, out long width, out long height);`
    #[inline]
    pub unsafe fn GetContentSizeConstrained(&self, maxWidth: libc::int32_t, maxHeight: libc::int32_t, width: *mut libc::int32_t, height: *mut libc::int32_t) -> nsresult {
        ((*self.vtable).GetContentSizeConstrained)(self, maxWidth, maxHeight, width, height)
    }


    /// ```text
    /// /** The minimum font size  */
    /// ```
    ///

    /// `attribute long minFontSize;`
    #[inline]
    pub unsafe fn GetMinFontSize(&self, aMinFontSize: *mut libc::int32_t) -> nsresult {
        ((*self.vtable).GetMinFontSize)(self, aMinFontSize)
    }


    /// ```text
    /// /** The minimum font size  */
    /// ```
    ///

    /// `attribute long minFontSize;`
    #[inline]
    pub unsafe fn SetMinFontSize(&self, aMinFontSize: libc::int32_t) -> nsresult {
        ((*self.vtable).SetMinFontSize)(self, aMinFontSize)
    }


    /// ```text
    /// /**
    ///    * Append |this| and all of its descendants to the given array,
    ///    * in depth-first pre-order traversal.
    ///    */
    /// ```
    ///

    /// `[noscript] void appendSubtree (in nsIContentViewerTArray array);`
    const _AppendSubtree: () = ();

    /// ```text
    /// /**
    ///    * Instruct the refresh driver to discontinue painting until further
    ///    * notice.
    ///    */
    /// ```
    ///

    /// `void pausePainting ();`
    #[inline]
    pub unsafe fn PausePainting(&self, ) -> nsresult {
        ((*self.vtable).PausePainting)(self, )
    }


    /// ```text
    /// /**
    ///    * Instruct the refresh driver to resume painting after a previous call to
    ///    * pausePainting().
    ///    */
    /// ```
    ///

    /// `void resumePainting ();`
    #[inline]
    pub unsafe fn ResumePainting(&self, ) -> nsresult {
        ((*self.vtable).ResumePainting)(self, )
    }



    /// `void emulateMedium (in AString aMediaType);`
    #[inline]
    pub unsafe fn EmulateMedium(&self, aMediaType: &::nsstring::nsAString) -> nsresult {
        ((*self.vtable).EmulateMedium)(self, aMediaType)
    }



    /// `void stopEmulatingMedium ();`
    #[inline]
    pub unsafe fn StopEmulatingMedium(&self, ) -> nsresult {
        ((*self.vtable).StopEmulatingMedium)(self, )
    }



    /// `[noscript,notxpcom] Encoding getHintCharset ();`
    const _GetHintCharset: () = ();


    /// `[noscript,notxpcom] void setHintCharset (in Encoding aEncoding);`
    const _SetHintCharset: () = ();


    /// `[noscript,notxpcom] Encoding getForceCharset ();`
    const _GetForceCharset: () = ();


    /// `[noscript,notxpcom] void setForceCharset (in Encoding aEncoding);`
    const _SetForceCharset: () = ();

}