< prev index next >

modules/javafx.web/src/main/native/Source/WebCore/platform/network/java/CookieJarJava.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 #if COMPILER(GCC)
   7 #pragma GCC diagnostic ignored "-Wunused-parameter"
   8 #endif
   9 
  10 #include "PlatformCookieJar.h"
  11 #include "URL.h"
  12 
  13 #include <wtf/java/JavaEnv.h>
  14 #include "NotImplemented.h"
  15 
  16 
  17 namespace WebCore {
  18 
  19 namespace CookieJarJavaInternal {
  20 static JGClass cookieJarClass;
  21 static jmethodID getMethod;
  22 static jmethodID putMethod;


   1 /*
   2  * Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved.
   3  */
   4 #include "config.h"
   5 
   6 #if COMPILER(GCC)
   7 #pragma GCC diagnostic ignored "-Wunused-parameter"
   8 #endif
   9 
  10 #include "PlatformCookieJar.h"
  11 #include "URL.h"
  12 
  13 #include <wtf/java/JavaEnv.h>
  14 #include "NotImplemented.h"
  15 
  16 
  17 namespace WebCore {
  18 
  19 namespace CookieJarJavaInternal {
  20 static JGClass cookieJarClass;
  21 static jmethodID getMethod;
  22 static jmethodID putMethod;


< prev index next >