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

Side by Side Diff: Source/WebKit/chromium/src/WebPopupMenuImpl.h

Issue 14698023: Remove some unused guards. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove some unused guards. Created 7 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 | « no previous file | Source/wtf/FastMalloc.cpp » ('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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 25 matching lines...) Expand all
36 #include <public/WebPoint.h> 36 #include <public/WebPoint.h>
37 #include <public/WebSize.h> 37 #include <public/WebSize.h>
38 #include <wtf/OwnPtr.h> 38 #include <wtf/OwnPtr.h>
39 #include <wtf/RefCounted.h> 39 #include <wtf/RefCounted.h>
40 40
41 namespace WebCore { 41 namespace WebCore {
42 class Frame; 42 class Frame;
43 class FramelessScrollView; 43 class FramelessScrollView;
44 class KeyboardEvent; 44 class KeyboardEvent;
45 class Page; 45 class Page;
46 #if ENABLE(GESTURE_RECOGNIZER)
47 class PlatformGestureRecognizer;
48 #endif
49 class PlatformKeyboardEvent; 46 class PlatformKeyboardEvent;
50 class Range; 47 class Range;
51 class Widget; 48 class Widget;
52 } 49 }
53 50
54 namespace WebKit { 51 namespace WebKit {
55 class WebGestureEvent; 52 class WebGestureEvent;
56 class WebKeyboardEvent; 53 class WebKeyboardEvent;
57 class WebMouseEvent; 54 class WebMouseEvent;
58 class WebMouseWheelEvent; 55 class WebMouseWheelEvent;
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 WebPoint m_lastMousePosition; 130 WebPoint m_lastMousePosition;
134 131
135 // This is a non-owning ref. The popup will notify us via popupClosed() 132 // This is a non-owning ref. The popup will notify us via popupClosed()
136 // before it is destroyed. 133 // before it is destroyed.
137 WebCore::FramelessScrollView* m_widget; 134 WebCore::FramelessScrollView* m_widget;
138 }; 135 };
139 136
140 } // namespace WebKit 137 } // namespace WebKit
141 138
142 #endif 139 #endif
OLDNEW
« no previous file with comments | « no previous file | Source/wtf/FastMalloc.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698