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

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

Issue 2839993002: [Android] Adding Smart GO/NEXT feature in Chrome (Closed)
Patch Set: Fixed WebViewTest build issues after restructure. 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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 void usageCountChromeLoadTimes(const WebString& metric) override; 310 void usageCountChromeLoadTimes(const WebString& metric) override;
311 base::SingleThreadTaskRunner* timerTaskRunner() override; 311 base::SingleThreadTaskRunner* timerTaskRunner() override;
312 base::SingleThreadTaskRunner* loadingTaskRunner() override; 312 base::SingleThreadTaskRunner* loadingTaskRunner() override;
313 base::SingleThreadTaskRunner* unthrottledTaskRunner() override; 313 base::SingleThreadTaskRunner* unthrottledTaskRunner() override;
314 WebInputMethodControllerImpl* inputMethodController() const override; 314 WebInputMethodControllerImpl* inputMethodController() const override;
315 315
316 void extractSmartClipData(WebRect rectInViewport, 316 void extractSmartClipData(WebRect rectInViewport,
317 WebString& clipText, 317 WebString& clipText,
318 WebString& clipHtml) override; 318 WebString& clipHtml) override;
319 319
320 void advanceFocusInForm(WebFocusType) override;
321
320 // WebFrameImplBase methods: 322 // WebFrameImplBase methods:
321 void initializeCoreFrame(Page&, 323 void initializeCoreFrame(Page&,
322 FrameOwner*, 324 FrameOwner*,
323 const AtomicString& name) override; 325 const AtomicString& name) override;
324 LocalFrame* frame() const override { return m_frame.get(); } 326 LocalFrame* frame() const override { return m_frame.get(); }
325 327
326 void willBeDetached(); 328 void willBeDetached();
327 void willDetachParent(); 329 void willDetachParent();
328 330
329 static WebLocalFrameImpl* create(WebTreeScopeType, 331 static WebLocalFrameImpl* create(WebTreeScopeType,
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
516 518
517 DEFINE_TYPE_CASTS(WebLocalFrameImpl, 519 DEFINE_TYPE_CASTS(WebLocalFrameImpl,
518 WebFrame, 520 WebFrame,
519 frame, 521 frame,
520 frame->isWebLocalFrame(), 522 frame->isWebLocalFrame(),
521 frame.isWebLocalFrame()); 523 frame.isWebLocalFrame());
522 524
523 } // namespace blink 525 } // namespace blink
524 526
525 #endif 527 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698