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

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

Issue 2839993002: [Android] Adding Smart GO/NEXT feature in Chrome (Closed)
Patch Set: Rebased the patch from TOT 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 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 WebFrameScheduler* Scheduler() const override; 319 WebFrameScheduler* Scheduler() const override;
320 base::SingleThreadTaskRunner* TimerTaskRunner() override; 320 base::SingleThreadTaskRunner* TimerTaskRunner() override;
321 base::SingleThreadTaskRunner* LoadingTaskRunner() override; 321 base::SingleThreadTaskRunner* LoadingTaskRunner() override;
322 base::SingleThreadTaskRunner* UnthrottledTaskRunner() override; 322 base::SingleThreadTaskRunner* UnthrottledTaskRunner() override;
323 WebInputMethodController* GetInputMethodController() override; 323 WebInputMethodController* GetInputMethodController() override;
324 324
325 void ExtractSmartClipData(WebRect rect_in_viewport, 325 void ExtractSmartClipData(WebRect rect_in_viewport,
326 WebString& clip_text, 326 WebString& clip_text,
327 WebString& clip_html) override; 327 WebString& clip_html) override;
328 328
329 void AdvanceFocusInForm(WebFocusType) override;
330
329 void InitializeCoreFrame(Page&, 331 void InitializeCoreFrame(Page&,
330 FrameOwner*, 332 FrameOwner*,
331 const AtomicString& name) override; 333 const AtomicString& name) override;
332 LocalFrame* GetFrame() const override { return frame_.Get(); } 334 LocalFrame* GetFrame() const override { return frame_.Get(); }
333 335
334 void WillBeDetached() override; 336 void WillBeDetached() override;
335 void WillDetachParent() override; 337 void WillDetachParent() override;
336 338
337 static WebLocalFrameImpl* Create(WebTreeScopeType, 339 static WebLocalFrameImpl* Create(WebTreeScopeType,
338 WebFrameClient*, 340 WebFrameClient*,
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
525 527
526 DEFINE_TYPE_CASTS(WebLocalFrameImpl, 528 DEFINE_TYPE_CASTS(WebLocalFrameImpl,
527 WebFrame, 529 WebFrame,
528 frame, 530 frame,
529 frame->IsWebLocalFrame(), 531 frame->IsWebLocalFrame(),
530 frame.IsWebLocalFrame()); 532 frame.IsWebLocalFrame());
531 533
532 } // namespace blink 534 } // namespace blink
533 535
534 #endif 536 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/page/FocusController.cpp ('k') | third_party/WebKit/Source/web/WebLocalFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698