OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 // | 4 // |
5 // Swig Interface for PyAuto. | 5 // Swig Interface for PyAuto. |
6 // PyAuto makes the Automation Proxy interface available in Python | 6 // PyAuto makes the Automation Proxy interface available in Python |
7 // | 7 // |
8 // Running swig as: | 8 // Running swig as: |
9 // swig -python -c++ chrome/test/pyautolib/pyautolib.i | 9 // swig -python -c++ chrome/test/pyautolib/pyautolib.i |
10 // would generate pyautolib.py, pyautolib_wrap.cxx | 10 // would generate pyautolib.py, pyautolib_wrap.cxx |
(...skipping 18 matching lines...) Expand all Loading... |
29 // Headers that can be swigged directly. | 29 // Headers that can be swigged directly. |
30 %include "chrome/app/chrome_command_ids.h" | 30 %include "chrome/app/chrome_command_ids.h" |
31 %include "chrome/app/chrome_dll_resource.h" | 31 %include "chrome/app/chrome_dll_resource.h" |
32 %include "chrome/common/automation_constants.h" | 32 %include "chrome/common/automation_constants.h" |
33 %include "chrome/common/pref_names.h" | 33 %include "chrome/common/pref_names.h" |
34 %include "content/public/common/page_type.h" | 34 %include "content/public/common/page_type.h" |
35 %include "content/public/common/security_style.h" | 35 %include "content/public/common/security_style.h" |
36 // Must come before cert_status_flags.h | 36 // Must come before cert_status_flags.h |
37 %include "net/base/net_export.h" | 37 %include "net/base/net_export.h" |
38 %ignore net::MapNetErrorToCertStatus(int); | 38 %ignore net::MapNetErrorToCertStatus(int); |
39 %include "net/base/cert_status_flags.h" | 39 %include "net/cert/cert_status_flags.h" |
40 | 40 |
41 #if defined(OS_CHROMEOS) | 41 #if defined(OS_CHROMEOS) |
42 %include "chrome/browser/chromeos/cros/network_constants.h" | 42 %include "chrome/browser/chromeos/cros/network_constants.h" |
43 %{ | 43 %{ |
44 #include "chrome/browser/chromeos/cros/network_constants.h" | 44 #include "chrome/browser/chromeos/cros/network_constants.h" |
45 %} | 45 %} |
46 #endif | 46 #endif |
47 | 47 |
48 %{ | 48 %{ |
49 #include "chrome/common/automation_constants.h" | 49 #include "chrome/common/automation_constants.h" |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
244 // Initialize a new SSLOptions that will use the specified certificate. | 244 // Initialize a new SSLOptions that will use the specified certificate. |
245 explicit SSLOptions(ServerCertificate cert); | 245 explicit SSLOptions(ServerCertificate cert); |
246 }; | 246 }; |
247 | 247 |
248 %{ | 248 %{ |
249 typedef net::TestServer::SSLOptions SSLOptions; | 249 typedef net::TestServer::SSLOptions SSLOptions; |
250 %} | 250 %} |
251 | 251 |
252 %pointer_class(int, int_ptr); | 252 %pointer_class(int, int_ptr); |
253 %pointer_class(uint32, uint32_ptr); | 253 %pointer_class(uint32, uint32_ptr); |
OLD | NEW |