| 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 MSVC_POP_WARNING(); | 124 MSVC_POP_WARNING(); |
| 125 | 125 |
| 126 #undef LOG | 126 #undef LOG |
| 127 | 127 |
| 128 #include "base/basictypes.h" | 128 #include "base/basictypes.h" |
| 129 #include "base/gfx/rect.h" | 129 #include "base/gfx/rect.h" |
| 130 #include "base/logging.h" | 130 #include "base/logging.h" |
| 131 #include "base/message_loop.h" | 131 #include "base/message_loop.h" |
| 132 #include "base/stats_counters.h" | 132 #include "base/stats_counters.h" |
| 133 #include "base/string_util.h" | 133 #include "base/string_util.h" |
| 134 #include "base/time.h" | |
| 135 #include "net/base/net_errors.h" | 134 #include "net/base/net_errors.h" |
| 136 #include "skia/ext/bitmap_platform_device.h" | 135 #include "skia/ext/bitmap_platform_device.h" |
| 137 #include "skia/ext/platform_canvas.h" | 136 #include "skia/ext/platform_canvas.h" |
| 138 #include "third_party/WebKit/WebKit/chromium/public/WebConsoleMessage.h" | 137 #include "third_party/WebKit/WebKit/chromium/public/WebConsoleMessage.h" |
| 139 #include "third_party/WebKit/WebKit/chromium/public/WebFindInPageRequest.h" | 138 #include "third_party/WebKit/WebKit/chromium/public/WebFindInPageRequest.h" |
| 140 #include "third_party/WebKit/WebKit/chromium/public/WebScriptSource.h" | 139 #include "third_party/WebKit/WebKit/chromium/public/WebScriptSource.h" |
| 141 #include "webkit/glue/alt_error_page_resource_fetcher.h" | 140 #include "webkit/glue/alt_error_page_resource_fetcher.h" |
| 142 #include "webkit/glue/dom_operations.h" | 141 #include "webkit/glue/dom_operations.h" |
| 143 #include "webkit/glue/dom_operations_private.h" | 142 #include "webkit/glue/dom_operations_private.h" |
| 144 #include "webkit/glue/feed.h" | 143 #include "webkit/glue/feed.h" |
| (...skipping 1779 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1924 return password_listeners_.get(input_element); | 1923 return password_listeners_.get(input_element); |
| 1925 } | 1924 } |
| 1926 | 1925 |
| 1927 void WebFrameImpl::ClearPasswordListeners() { | 1926 void WebFrameImpl::ClearPasswordListeners() { |
| 1928 for (PasswordListenerMap::iterator iter = password_listeners_.begin(); | 1927 for (PasswordListenerMap::iterator iter = password_listeners_.begin(); |
| 1929 iter != password_listeners_.end(); ++iter) { | 1928 iter != password_listeners_.end(); ++iter) { |
| 1930 delete iter->second; | 1929 delete iter->second; |
| 1931 } | 1930 } |
| 1932 password_listeners_.clear(); | 1931 password_listeners_.clear(); |
| 1933 } | 1932 } |
| OLD | NEW |