| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. | 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 class Frame; | 54 class Frame; |
| 55 class FrameView; | 55 class FrameView; |
| 56 class HistoryItem; | 56 class HistoryItem; |
| 57 class Node; | 57 class Node; |
| 58 class Range; | 58 class Range; |
| 59 class SubstituteData; | 59 class SubstituteData; |
| 60 struct WindowFeatures; | 60 struct WindowFeatures; |
| 61 } | 61 } |
| 62 | 62 |
| 63 namespace gfx { | 63 namespace gfx { |
| 64 class BitmapPlatformDeviceWin; | 64 class BitmapPlatformDevice; |
| 65 } | 65 } |
| 66 | 66 |
| 67 // Implementation of WebFrame, note that this is a reference counted object. | 67 // Implementation of WebFrame, note that this is a reference counted object. |
| 68 class WebFrameImpl : public WebFrame, public base::RefCounted<WebFrameImpl> { | 68 class WebFrameImpl : public WebFrame, public base::RefCounted<WebFrameImpl> { |
| 69 public: | 69 public: |
| 70 WebFrameImpl(); | 70 WebFrameImpl(); |
| 71 ~WebFrameImpl(); | 71 ~WebFrameImpl(); |
| 72 | 72 |
| 73 static int live_object_count() { | 73 static int live_object_count() { |
| 74 return live_object_count_; | 74 return live_object_count_; |
| (...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 // The input fields that are interested in edit events and their associated | 411 // The input fields that are interested in edit events and their associated |
| 412 // listeners. | 412 // listeners. |
| 413 typedef HashMap<RefPtr<WebCore::HTMLInputElement>, | 413 typedef HashMap<RefPtr<WebCore::HTMLInputElement>, |
| 414 webkit_glue::PasswordAutocompleteListener*> PasswordListenerMap; | 414 webkit_glue::PasswordAutocompleteListener*> PasswordListenerMap; |
| 415 PasswordListenerMap password_listeners_; | 415 PasswordListenerMap password_listeners_; |
| 416 | 416 |
| 417 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl); | 417 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl); |
| 418 }; | 418 }; |
| 419 | 419 |
| 420 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ | 420 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ |
| OLD | NEW |