< prev index next >

modules/javafx.web/src/main/native/Tools/DumpRenderTree/java/JavaEnv.cpp

Print this page
rev 11020 : 8201563: Update copyright header for files modified in 2018
Reviewed-by:
   1 /*
   2  * Copyright (c) 2011, 2017, Oracle and/or its affiliates. All rights reserved.
   3  */
   4 #include "config.h"
   5 
   6 #include "JavaEnv.h"
   7 
   8 JavaVM* jvm = 0;
   9 
  10 
  11 jclass dumpRenderTreeClass;
  12 static jmethodID waitUntilDoneMID;
  13 static jmethodID notifyDoneMID;
  14 static jmethodID overridePreferenceMID;
  15 static jmethodID getBackForwardItemCountMID;
  16 static jmethodID clearBackForwardListMID;
  17 static jmethodID resolveURLMID;
  18 static jmethodID loadURLMID;
  19 static jmethodID goBackForwardMID;
  20 
  21 jclass getDumpRenderTreeClass() { return dumpRenderTreeClass; }
  22 jmethodID getWaitUntillDoneMethodId() { return waitUntilDoneMID; }


   1 /*
   2  * Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved.
   3  */
   4 #include "config.h"
   5 
   6 #include "JavaEnv.h"
   7 
   8 JavaVM* jvm = 0;
   9 
  10 
  11 jclass dumpRenderTreeClass;
  12 static jmethodID waitUntilDoneMID;
  13 static jmethodID notifyDoneMID;
  14 static jmethodID overridePreferenceMID;
  15 static jmethodID getBackForwardItemCountMID;
  16 static jmethodID clearBackForwardListMID;
  17 static jmethodID resolveURLMID;
  18 static jmethodID loadURLMID;
  19 static jmethodID goBackForwardMID;
  20 
  21 jclass getDumpRenderTreeClass() { return dumpRenderTreeClass; }
  22 jmethodID getWaitUntillDoneMethodId() { return waitUntilDoneMID; }


< prev index next >