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

Side by Side Diff: third_party/WebKit/public/web/WebView.h

Issue 2910223003: [refactor] - Rename and Move WebWidget::CaretOrSelectionRange to WebInputMethodController::GetSelec… (Closed)
Patch Set: Fixed some comments 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, 2010, 2011, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2009, 2010, 2011, 2012 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 using WebWidget::HandleInputEvent; 95 using WebWidget::HandleInputEvent;
96 using WebWidget::SetCursorVisibilityState; 96 using WebWidget::SetCursorVisibilityState;
97 using WebWidget::HasTouchEventHandlersAt; 97 using WebWidget::HasTouchEventHandlersAt;
98 using WebWidget::ApplyViewportDeltas; 98 using WebWidget::ApplyViewportDeltas;
99 using WebWidget::MouseCaptureLost; 99 using WebWidget::MouseCaptureLost;
100 using WebWidget::SetFocus; 100 using WebWidget::SetFocus;
101 using WebWidget::CompositionRange; 101 using WebWidget::CompositionRange;
102 using WebWidget::SelectionBounds; 102 using WebWidget::SelectionBounds;
103 using WebWidget::SelectionTextDirection; 103 using WebWidget::SelectionTextDirection;
104 using WebWidget::IsSelectionAnchorFirst; 104 using WebWidget::IsSelectionAnchorFirst;
105 using WebWidget::CaretOrSelectionRange;
106 using WebWidget::SetTextDirection; 105 using WebWidget::SetTextDirection;
107 using WebWidget::IsAcceleratedCompositingActive; 106 using WebWidget::IsAcceleratedCompositingActive;
108 using WebWidget::IsWebView; 107 using WebWidget::IsWebView;
109 using WebWidget::IsPagePopup; 108 using WebWidget::IsPagePopup;
110 using WebWidget::WillCloseLayerTreeView; 109 using WebWidget::WillCloseLayerTreeView;
111 using WebWidget::DidAcquirePointerLock; 110 using WebWidget::DidAcquirePointerLock;
112 using WebWidget::DidNotAcquirePointerLock; 111 using WebWidget::DidNotAcquirePointerLock;
113 using WebWidget::DidLosePointerLock; 112 using WebWidget::DidLosePointerLock;
114 using WebWidget::BackgroundColor; 113 using WebWidget::BackgroundColor;
115 using WebWidget::GetPagePopup; 114 using WebWidget::GetPagePopup;
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 // completed. 487 // completed.
489 WebWidget* GetWidget() { return this; } 488 WebWidget* GetWidget() { return this; }
490 489
491 protected: 490 protected:
492 ~WebView() {} 491 ~WebView() {}
493 }; 492 };
494 493
495 } // namespace blink 494 } // namespace blink
496 495
497 #endif 496 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698