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

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

Issue 2839993002: [Android] Adding Smart GO/NEXT feature in Chrome (Closed)
Patch Set: Preserved the DCHECK and fixed browser_tests failure 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 307 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 WebFrameScheduler* Scheduler() const override; 318 WebFrameScheduler* Scheduler() const override;
319 base::SingleThreadTaskRunner* TimerTaskRunner() override; 319 base::SingleThreadTaskRunner* TimerTaskRunner() override;
320 base::SingleThreadTaskRunner* LoadingTaskRunner() override; 320 base::SingleThreadTaskRunner* LoadingTaskRunner() override;
321 base::SingleThreadTaskRunner* UnthrottledTaskRunner() override; 321 base::SingleThreadTaskRunner* UnthrottledTaskRunner() override;
322 WebInputMethodController* GetInputMethodController() override; 322 WebInputMethodController* GetInputMethodController() override;
323 323
324 void ExtractSmartClipData(WebRect rect_in_viewport, 324 void ExtractSmartClipData(WebRect rect_in_viewport,
325 WebString& clip_text, 325 WebString& clip_text,
326 WebString& clip_html) override; 326 WebString& clip_html) override;
327 327
328 void AdvanceFocusInForm(WebFocusType) override;
329
328 void InitializeCoreFrame(Page&, 330 void InitializeCoreFrame(Page&,
329 FrameOwner*, 331 FrameOwner*,
330 const AtomicString& name) override; 332 const AtomicString& name) override;
331 LocalFrame* GetFrame() const override { return frame_.Get(); } 333 LocalFrame* GetFrame() const override { return frame_.Get(); }
332 334
333 void WillBeDetached() override; 335 void WillBeDetached() override;
334 void WillDetachParent() override; 336 void WillDetachParent() override;
335 337
336 static WebLocalFrameImpl* Create(WebTreeScopeType, 338 static WebLocalFrameImpl* Create(WebTreeScopeType,
337 WebFrameClient*, 339 WebFrameClient*,
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
524 526
525 DEFINE_TYPE_CASTS(WebLocalFrameImpl, 527 DEFINE_TYPE_CASTS(WebLocalFrameImpl,
526 WebFrame, 528 WebFrame,
527 frame, 529 frame,
528 frame->IsWebLocalFrame(), 530 frame->IsWebLocalFrame(),
529 frame.IsWebLocalFrame()); 531 frame.IsWebLocalFrame());
530 532
531 } // namespace blink 533 } // namespace blink
532 534
533 #endif 535 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698