OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) | 2 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) |
3 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. | 3 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 #include "webkit/glue/glue_util.h" | 148 #include "webkit/glue/glue_util.h" |
149 #include "webkit/glue/webappcachecontext.h" | 149 #include "webkit/glue/webappcachecontext.h" |
150 #include "webkit/glue/webdatasource_impl.h" | 150 #include "webkit/glue/webdatasource_impl.h" |
151 #include "webkit/glue/weberror_impl.h" | 151 #include "webkit/glue/weberror_impl.h" |
152 #include "webkit/glue/webframe_impl.h" | 152 #include "webkit/glue/webframe_impl.h" |
153 #include "webkit/glue/webhistoryitem_impl.h" | 153 #include "webkit/glue/webhistoryitem_impl.h" |
154 #include "webkit/glue/weburlrequest_impl.h" | 154 #include "webkit/glue/weburlrequest_impl.h" |
155 #include "webkit/glue/webtextinput_impl.h" | 155 #include "webkit/glue/webtextinput_impl.h" |
156 #include "webkit/glue/webview_impl.h" | 156 #include "webkit/glue/webview_impl.h" |
157 | 157 |
158 #if defined(OS_LINUX) | 158 #if defined(TOOLKIT_GTK) |
159 #include <gdk/gdk.h> | 159 #include <gdk/gdk.h> |
160 #endif | 160 #endif |
161 | 161 |
162 #if USE(JSC) | 162 #if USE(JSC) |
163 #include "bridge/c/c_instance.h" | 163 #include "bridge/c/c_instance.h" |
164 #include "bridge/runtime_object.h" | 164 #include "bridge/runtime_object.h" |
165 #endif | 165 #endif |
166 | 166 |
167 using base::Time; | 167 using base::Time; |
168 | 168 |
(...skipping 1807 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1976 return password_listeners_.get(input_element); | 1976 return password_listeners_.get(input_element); |
1977 } | 1977 } |
1978 | 1978 |
1979 void WebFrameImpl::ClearPasswordListeners() { | 1979 void WebFrameImpl::ClearPasswordListeners() { |
1980 for (PasswordListenerMap::iterator iter = password_listeners_.begin(); | 1980 for (PasswordListenerMap::iterator iter = password_listeners_.begin(); |
1981 iter != password_listeners_.end(); ++iter) { | 1981 iter != password_listeners_.end(); ++iter) { |
1982 delete iter->second; | 1982 delete iter->second; |
1983 } | 1983 } |
1984 password_listeners_.clear(); | 1984 password_listeners_.clear(); |
1985 } | 1985 } |
OLD | NEW |