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

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

Issue 2892393002: Move WebInputMethodControllerImpl to core/exported/ & break dependencies. (Closed)
Patch Set: Rebase. Created 3 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
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 14 matching lines...) Expand all
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef WebLocalFrameImpl_h 31 #ifndef WebLocalFrameImpl_h
32 #define WebLocalFrameImpl_h 32 #define WebLocalFrameImpl_h
33 33
34 #include "core/editing/VisiblePosition.h" 34 #include "core/editing/VisiblePosition.h"
35 #include "core/exported/WebInputMethodControllerImpl.h"
35 #include "core/frame/ContentSettingsClient.h" 36 #include "core/frame/ContentSettingsClient.h"
36 #include "core/frame/LocalFrame.h" 37 #include "core/frame/LocalFrame.h"
37 #include "core/frame/WebFrameWidgetBase.h" 38 #include "core/frame/WebFrameWidgetBase.h"
38 #include "core/frame/WebLocalFrameBase.h" 39 #include "core/frame/WebLocalFrameBase.h"
39 #include "platform/geometry/FloatRect.h" 40 #include "platform/geometry/FloatRect.h"
40 #include "platform/heap/SelfKeepAlive.h" 41 #include "platform/heap/SelfKeepAlive.h"
41 #include "platform/wtf/Compiler.h" 42 #include "platform/wtf/Compiler.h"
42 #include "platform/wtf/text/WTFString.h" 43 #include "platform/wtf/text/WTFString.h"
43 #include "public/platform/WebFileSystemType.h" 44 #include "public/platform/WebFileSystemType.h"
44 #include "public/web/WebLocalFrame.h" 45 #include "public/web/WebLocalFrame.h"
45 #include "web/LocalFrameClientImpl.h" 46 #include "web/LocalFrameClientImpl.h"
46 #include "web/UserMediaClientImpl.h" 47 #include "web/UserMediaClientImpl.h"
47 #include "web/WebExport.h" 48 #include "web/WebExport.h"
48 #include "web/WebInputMethodControllerImpl.h"
49 49
50 #include <memory> 50 #include <memory>
51 51
52 namespace blink { 52 namespace blink {
53 53
54 class ChromePrintContext; 54 class ChromePrintContext;
55 class IntSize; 55 class IntSize;
56 class KURL; 56 class KURL;
57 class ScrollableArea; 57 class ScrollableArea;
58 class SharedWorkerRepositoryClientImpl; 58 class SharedWorkerRepositoryClientImpl;
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 void SetTickmarks(const WebVector<WebRect>&) override; 305 void SetTickmarks(const WebVector<WebRect>&) override;
306 WebFrameWidgetBase* FrameWidget() const override; 306 WebFrameWidgetBase* FrameWidget() const override;
307 void CopyImageAt(const WebPoint&) override; 307 void CopyImageAt(const WebPoint&) override;
308 void SaveImageAt(const WebPoint&) override; 308 void SaveImageAt(const WebPoint&) override;
309 void SetEngagementLevel(mojom::EngagementLevel) override; 309 void SetEngagementLevel(mojom::EngagementLevel) override;
310 void ClearActiveFindMatch() override; 310 void ClearActiveFindMatch() override;
311 void UsageCountChromeLoadTimes(const WebString& metric) override; 311 void UsageCountChromeLoadTimes(const WebString& metric) override;
312 base::SingleThreadTaskRunner* TimerTaskRunner() override; 312 base::SingleThreadTaskRunner* TimerTaskRunner() override;
313 base::SingleThreadTaskRunner* LoadingTaskRunner() override; 313 base::SingleThreadTaskRunner* LoadingTaskRunner() override;
314 base::SingleThreadTaskRunner* UnthrottledTaskRunner() override; 314 base::SingleThreadTaskRunner* UnthrottledTaskRunner() override;
315 WebInputMethodControllerImpl* GetInputMethodController() override; 315 WebInputMethodController* GetInputMethodController() override;
316 316
317 void ExtractSmartClipData(WebRect rect_in_viewport, 317 void ExtractSmartClipData(WebRect rect_in_viewport,
318 WebString& clip_text, 318 WebString& clip_text,
319 WebString& clip_html) override; 319 WebString& clip_html) override;
320 320
321 void InitializeCoreFrame(Page&, 321 void InitializeCoreFrame(Page&,
322 FrameOwner*, 322 FrameOwner*,
323 const AtomicString& name) override; 323 const AtomicString& name) override;
324 LocalFrame* GetFrame() const override { return frame_.Get(); } 324 LocalFrame* GetFrame() const override { return frame_.Get(); }
325 325
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
516 516
517 DEFINE_TYPE_CASTS(WebLocalFrameImpl, 517 DEFINE_TYPE_CASTS(WebLocalFrameImpl,
518 WebFrame, 518 WebFrame,
519 frame, 519 frame,
520 frame->IsWebLocalFrame(), 520 frame->IsWebLocalFrame(),
521 frame.IsWebLocalFrame()); 521 frame.IsWebLocalFrame());
522 522
523 } // namespace blink 523 } // namespace blink
524 524
525 #endif 525 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebInputMethodControllerImpl.cpp ('k') | third_party/WebKit/Source/web/WebLocalFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698