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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 #include "SubstituteData.h" | 109 #include "SubstituteData.h" |
110 #include "TextIterator.h" | 110 #include "TextIterator.h" |
111 #include "TextAffinity.h" | 111 #include "TextAffinity.h" |
112 #include "XPathResult.h" | 112 #include "XPathResult.h" |
113 | 113 |
114 MSVC_POP_WARNING(); | 114 MSVC_POP_WARNING(); |
115 | 115 |
116 #undef LOG | 116 #undef LOG |
117 | 117 |
118 #include "base/basictypes.h" | 118 #include "base/basictypes.h" |
119 #include "base/gfx/bitmap_platform_device.h" | |
120 #include "base/gfx/platform_canvas.h" | |
121 #include "base/gfx/rect.h" | 119 #include "base/gfx/rect.h" |
122 #include "base/logging.h" | 120 #include "base/logging.h" |
123 #include "base/message_loop.h" | 121 #include "base/message_loop.h" |
124 #include "base/stats_counters.h" | 122 #include "base/stats_counters.h" |
125 #include "base/string_util.h" | 123 #include "base/string_util.h" |
126 #include "base/time.h" | 124 #include "base/time.h" |
127 #include "net/base/net_errors.h" | 125 #include "net/base/net_errors.h" |
| 126 #include "skia/ext/bitmap_platform_device.h" |
| 127 #include "skia/ext/platform_canvas.h" |
128 #include "webkit/glue/alt_error_page_resource_fetcher.h" | 128 #include "webkit/glue/alt_error_page_resource_fetcher.h" |
129 #include "webkit/glue/dom_operations.h" | 129 #include "webkit/glue/dom_operations.h" |
130 #include "webkit/glue/glue_serialize.h" | 130 #include "webkit/glue/glue_serialize.h" |
131 #include "webkit/glue/webdocumentloader_impl.h" | 131 #include "webkit/glue/webdocumentloader_impl.h" |
132 #include "webkit/glue/weberror_impl.h" | 132 #include "webkit/glue/weberror_impl.h" |
133 #include "webkit/glue/webframe_impl.h" | 133 #include "webkit/glue/webframe_impl.h" |
134 #include "webkit/glue/webhistoryitem_impl.h" | 134 #include "webkit/glue/webhistoryitem_impl.h" |
135 #include "webkit/glue/webtextinput_impl.h" | 135 #include "webkit/glue/webtextinput_impl.h" |
136 #include "webkit/glue/webview_impl.h" | 136 #include "webkit/glue/webview_impl.h" |
137 | 137 |
(...skipping 1750 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1888 } | 1888 } |
1889 | 1889 |
1890 void WebFrameImpl::ClearPasswordListeners() { | 1890 void WebFrameImpl::ClearPasswordListeners() { |
1891 for (PasswordListenerMap::iterator iter = password_listeners_.begin(); | 1891 for (PasswordListenerMap::iterator iter = password_listeners_.begin(); |
1892 iter != password_listeners_.end(); ++iter) { | 1892 iter != password_listeners_.end(); ++iter) { |
1893 delete iter->second; | 1893 delete iter->second; |
1894 } | 1894 } |
1895 password_listeners_.clear(); | 1895 password_listeners_.clear(); |
1896 } | 1896 } |
1897 | 1897 |
OLD | NEW |