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

Side by Side Diff: third_party/WebKit/Source/web/WebViewImpl.h

Issue 2805733003: Rewrite references to "wtf/" to "platform/wtf/" in web. (Closed)
Patch Set: Created 3 years, 8 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 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 21 matching lines...) Expand all
32 #define WebViewImpl_h 32 #define WebViewImpl_h
33 33
34 #include <memory> 34 #include <memory>
35 #include "core/page/ContextMenuProvider.h" 35 #include "core/page/ContextMenuProvider.h"
36 #include "core/page/EventWithHitTestResults.h" 36 #include "core/page/EventWithHitTestResults.h"
37 #include "platform/animation/CompositorAnimationTimeline.h" 37 #include "platform/animation/CompositorAnimationTimeline.h"
38 #include "platform/geometry/IntPoint.h" 38 #include "platform/geometry/IntPoint.h"
39 #include "platform/geometry/IntRect.h" 39 #include "platform/geometry/IntRect.h"
40 #include "platform/graphics/GraphicsLayer.h" 40 #include "platform/graphics/GraphicsLayer.h"
41 #include "platform/heap/Handle.h" 41 #include "platform/heap/Handle.h"
42 #include "platform/wtf/Compiler.h"
43 #include "platform/wtf/HashSet.h"
44 #include "platform/wtf/RefCounted.h"
45 #include "platform/wtf/Vector.h"
42 #include "public/platform/WebDisplayMode.h" 46 #include "public/platform/WebDisplayMode.h"
43 #include "public/platform/WebFloatSize.h" 47 #include "public/platform/WebFloatSize.h"
44 #include "public/platform/WebGestureCurveTarget.h" 48 #include "public/platform/WebGestureCurveTarget.h"
45 #include "public/platform/WebGestureEvent.h" 49 #include "public/platform/WebGestureEvent.h"
46 #include "public/platform/WebInputEvent.h" 50 #include "public/platform/WebInputEvent.h"
47 #include "public/platform/WebInputEventResult.h" 51 #include "public/platform/WebInputEventResult.h"
48 #include "public/platform/WebLayer.h" 52 #include "public/platform/WebLayer.h"
49 #include "public/platform/WebPoint.h" 53 #include "public/platform/WebPoint.h"
50 #include "public/platform/WebRect.h" 54 #include "public/platform/WebRect.h"
51 #include "public/platform/WebScheduler.h" 55 #include "public/platform/WebScheduler.h"
52 #include "public/platform/WebSize.h" 56 #include "public/platform/WebSize.h"
53 #include "public/platform/WebString.h" 57 #include "public/platform/WebString.h"
54 #include "public/platform/WebVector.h" 58 #include "public/platform/WebVector.h"
55 #include "public/web/WebNavigationPolicy.h" 59 #include "public/web/WebNavigationPolicy.h"
56 #include "public/web/WebPageImportanceSignals.h" 60 #include "public/web/WebPageImportanceSignals.h"
57 #include "public/web/WebView.h" 61 #include "public/web/WebView.h"
58 #include "web/ChromeClientImpl.h" 62 #include "web/ChromeClientImpl.h"
59 #include "web/ContextMenuClientImpl.h" 63 #include "web/ContextMenuClientImpl.h"
60 #include "web/EditorClientImpl.h" 64 #include "web/EditorClientImpl.h"
61 #include "web/MediaKeysClientImpl.h" 65 #include "web/MediaKeysClientImpl.h"
62 #include "web/PageWidgetDelegate.h" 66 #include "web/PageWidgetDelegate.h"
63 #include "web/ResizeViewportAnchor.h" 67 #include "web/ResizeViewportAnchor.h"
64 #include "web/SpellCheckerClientImpl.h" 68 #include "web/SpellCheckerClientImpl.h"
65 #include "web/StorageClientImpl.h" 69 #include "web/StorageClientImpl.h"
66 #include "web/WebExport.h" 70 #include "web/WebExport.h"
67 #include "wtf/Compiler.h"
68 #include "wtf/HashSet.h"
69 #include "wtf/RefCounted.h"
70 #include "wtf/Vector.h"
71 71
72 namespace blink { 72 namespace blink {
73 73
74 class BrowserControls; 74 class BrowserControls;
75 class CompositorAnimationHost; 75 class CompositorAnimationHost;
76 class DevToolsEmulator; 76 class DevToolsEmulator;
77 class Frame; 77 class Frame;
78 class FullscreenController; 78 class FullscreenController;
79 class InspectorOverlay; 79 class InspectorOverlay;
80 class LinkHighlightImpl; 80 class LinkHighlightImpl;
(...skipping 667 matching lines...) Expand 10 before | Expand all | Expand 10 after
748 Persistent<ResizeViewportAnchor> m_resizeViewportAnchor; 748 Persistent<ResizeViewportAnchor> m_resizeViewportAnchor;
749 }; 749 };
750 750
751 // We have no ways to check if the specified WebView is an instance of 751 // We have no ways to check if the specified WebView is an instance of
752 // WebViewImpl because WebViewImpl is the only implementation of WebView. 752 // WebViewImpl because WebViewImpl is the only implementation of WebView.
753 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); 753 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true);
754 754
755 } // namespace blink 755 } // namespace blink
756 756
757 #endif 757 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebViewFrameWidget.h ('k') | third_party/WebKit/Source/web/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698