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

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

Issue 2667283007: Refactor Samsung SmartClip implementation. (Closed)
Patch Set: Really apply code review comments Created 3 years, 10 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 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 void copyImageAt(const WebPoint&) override; 291 void copyImageAt(const WebPoint&) override;
292 void saveImageAt(const WebPoint&) override; 292 void saveImageAt(const WebPoint&) override;
293 void setEngagementLevel(mojom::EngagementLevel) override; 293 void setEngagementLevel(mojom::EngagementLevel) override;
294 void clearActiveFindMatch() override; 294 void clearActiveFindMatch() override;
295 void usageCountChromeLoadTimes(const WebString& metric) override; 295 void usageCountChromeLoadTimes(const WebString& metric) override;
296 base::SingleThreadTaskRunner* timerTaskRunner() override; 296 base::SingleThreadTaskRunner* timerTaskRunner() override;
297 base::SingleThreadTaskRunner* loadingTaskRunner() override; 297 base::SingleThreadTaskRunner* loadingTaskRunner() override;
298 base::SingleThreadTaskRunner* unthrottledTaskRunner() override; 298 base::SingleThreadTaskRunner* unthrottledTaskRunner() override;
299 WebInputMethodControllerImpl* inputMethodController() const override; 299 WebInputMethodControllerImpl* inputMethodController() const override;
300 300
301 void extractSmartClipData(WebRect rectInViewport,
302 WebString& clipText,
303 WebString& clipHtml) override;
304
301 // WebFrameImplBase methods: 305 // WebFrameImplBase methods:
302 void initializeCoreFrame(FrameHost*, 306 void initializeCoreFrame(FrameHost*,
303 FrameOwner*, 307 FrameOwner*,
304 const AtomicString& name, 308 const AtomicString& name,
305 const AtomicString& uniqueName) override; 309 const AtomicString& uniqueName) override;
306 LocalFrame* frame() const override { return m_frame.get(); } 310 LocalFrame* frame() const override { return m_frame.get(); }
307 311
308 void willBeDetached(); 312 void willBeDetached();
309 void willDetachParent(); 313 void willDetachParent();
310 314
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 495
492 DEFINE_TYPE_CASTS(WebLocalFrameImpl, 496 DEFINE_TYPE_CASTS(WebLocalFrameImpl,
493 WebFrame, 497 WebFrame,
494 frame, 498 frame,
495 frame->isWebLocalFrame(), 499 frame->isWebLocalFrame(),
496 frame.isWebLocalFrame()); 500 frame.isWebLocalFrame());
497 501
498 } // namespace blink 502 } // namespace blink
499 503
500 #endif 504 #endif
OLDNEW
« no previous file with comments | « content/renderer/render_view_impl_android.cc ('k') | third_party/WebKit/Source/web/WebLocalFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698