Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(313)

Side by Side Diff: webkit/glue/webframe_impl.h

Issue 125109: Refactor the PlatformContext layer to have only one class. (Closed)
Patch Set: Created 11 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webkit/api/public/WebCanvas.h ('k') | webkit/tools/test_shell/mac/webwidget_host.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « webkit/api/public/WebCanvas.h ('k') | webkit/tools/test_shell/mac/webwidget_host.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698