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

Side by Side Diff: third_party/WebKit/Source/web/WebLocalFrameImpl.cpp

Issue 2848963002: Clean up bindings/core/v8 (Part 1) (Closed)
Patch Set: Fix build Created 3 years, 7 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) 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 // The client is expected to be set whenever the WebLocalFrameImpl is attached 85 // The client is expected to be set whenever the WebLocalFrameImpl is attached
86 // to the DOM. 86 // to the DOM.
87 87
88 #include "web/WebLocalFrameImpl.h" 88 #include "web/WebLocalFrameImpl.h"
89 89
90 #include <algorithm> 90 #include <algorithm>
91 #include <memory> 91 #include <memory>
92 #include <utility> 92 #include <utility>
93 93
94 #include "bindings/core/v8/BindingSecurity.h" 94 #include "bindings/core/v8/BindingSecurity.h"
95 #include "bindings/core/v8/DOMWrapperWorld.h"
96 #include "bindings/core/v8/ExceptionState.h" 95 #include "bindings/core/v8/ExceptionState.h"
97 #include "bindings/core/v8/ScriptController.h" 96 #include "bindings/core/v8/ScriptController.h"
98 #include "bindings/core/v8/ScriptSourceCode.h" 97 #include "bindings/core/v8/ScriptSourceCode.h"
99 #include "bindings/core/v8/ScriptValue.h" 98 #include "bindings/core/v8/ScriptValue.h"
100 #include "bindings/core/v8/SourceLocation.h" 99 #include "bindings/core/v8/SourceLocation.h"
101 #include "bindings/core/v8/V8BindingForCore.h" 100 #include "bindings/core/v8/V8BindingForCore.h"
102 #include "bindings/core/v8/V8GCController.h" 101 #include "bindings/core/v8/V8GCController.h"
103 #include "bindings/core/v8/V8PerIsolateData.h" 102 #include "bindings/core/v8/V8PerIsolateData.h"
104 #include "core/HTMLNames.h" 103 #include "core/HTMLNames.h"
105 #include "core/dom/Document.h" 104 #include "core/dom/Document.h"
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 #include "core/page/FrameTree.h" 159 #include "core/page/FrameTree.h"
161 #include "core/page/Page.h" 160 #include "core/page/Page.h"
162 #include "core/page/PrintContext.h" 161 #include "core/page/PrintContext.h"
163 #include "core/paint/PaintLayer.h" 162 #include "core/paint/PaintLayer.h"
164 #include "core/paint/TransformRecorder.h" 163 #include "core/paint/TransformRecorder.h"
165 #include "core/timing/DOMWindowPerformance.h" 164 #include "core/timing/DOMWindowPerformance.h"
166 #include "core/timing/Performance.h" 165 #include "core/timing/Performance.h"
167 #include "platform/ScriptForbiddenScope.h" 166 #include "platform/ScriptForbiddenScope.h"
168 #include "platform/UserGestureIndicator.h" 167 #include "platform/UserGestureIndicator.h"
169 #include "platform/WebFrameScheduler.h" 168 #include "platform/WebFrameScheduler.h"
169 #include "platform/bindings/DOMWrapperWorld.h"
170 #include "platform/clipboard/ClipboardUtilities.h" 170 #include "platform/clipboard/ClipboardUtilities.h"
171 #include "platform/fonts/FontCache.h" 171 #include "platform/fonts/FontCache.h"
172 #include "platform/graphics/Color.h" 172 #include "platform/graphics/Color.h"
173 #include "platform/graphics/GraphicsContext.h" 173 #include "platform/graphics/GraphicsContext.h"
174 #include "platform/graphics/GraphicsLayerClient.h" 174 #include "platform/graphics/GraphicsLayerClient.h"
175 #include "platform/graphics/paint/ClipRecorder.h" 175 #include "platform/graphics/paint/ClipRecorder.h"
176 #include "platform/graphics/paint/DisplayItemCacheSkipper.h" 176 #include "platform/graphics/paint/DisplayItemCacheSkipper.h"
177 #include "platform/graphics/paint/DrawingRecorder.h" 177 #include "platform/graphics/paint/DrawingRecorder.h"
178 #include "platform/graphics/paint/PaintRecordBuilder.h" 178 #include "platform/graphics/paint/PaintRecordBuilder.h"
179 #include "platform/graphics/skia/SkiaUtils.h" 179 #include "platform/graphics/skia/SkiaUtils.h"
(...skipping 2393 matching lines...) Expand 10 before | Expand all | Expand 10 after
2573 TextCheckerClient& WebLocalFrameImpl::GetTextCheckerClient() const { 2573 TextCheckerClient& WebLocalFrameImpl::GetTextCheckerClient() const {
2574 return *text_checker_client_; 2574 return *text_checker_client_;
2575 } 2575 }
2576 2576
2577 void WebLocalFrameImpl::SetTextCheckClient( 2577 void WebLocalFrameImpl::SetTextCheckClient(
2578 WebTextCheckClient* text_check_client) { 2578 WebTextCheckClient* text_check_client) {
2579 text_check_client_ = text_check_client; 2579 text_check_client_ = text_check_client;
2580 } 2580 }
2581 2581
2582 } // namespace blink 2582 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebKit.cpp ('k') | third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698