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

Unified Diff: win8/metro_driver/ime/text_service.cc

Issue 625073003: Replacing the OVERRIDE with override and FINAL with final in win8 folder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Corrected patchset-1 Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « win8/metro_driver/ime/input_source.cc ('k') | win8/metro_driver/ime/text_store.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: win8/metro_driver/ime/text_service.cc
diff --git a/win8/metro_driver/ime/text_service.cc b/win8/metro_driver/ime/text_service.cc
index dbb74f35d4a4078b17bb65670942175ae2145412..986288ea6f74c5128f75751317234b0521dfcce0 100644
--- a/win8/metro_driver/ime/text_service.cc
+++ b/win8/metro_driver/ime/text_service.cc
@@ -334,7 +334,7 @@ class TextServiceImpl : public TextService,
private:
// TextService overrides:
- virtual void CancelComposition() OVERRIDE {
+ virtual void CancelComposition() override {
if (!current_document_) {
VLOG(0) << "|current_document_| is NULL due to the previous error.";
return;
@@ -348,7 +348,7 @@ class TextServiceImpl : public TextService,
virtual void OnDocumentChanged(
const std::vector<int32>& input_scopes,
const std::vector<metro_viewer::CharacterBounds>& character_bounds)
- OVERRIDE {
+ override {
bool document_type_changed = input_scopes_ != input_scopes;
input_scopes_ = input_scopes;
composition_character_bounds_ = character_bounds;
@@ -356,7 +356,7 @@ class TextServiceImpl : public TextService,
OnDocumentTypeChanged(input_scopes);
}
- virtual void OnWindowActivated() OVERRIDE {
+ virtual void OnWindowActivated() override {
if (!current_document_) {
VLOG(0) << "|current_document_| is NULL due to the previous error.";
return;
@@ -377,7 +377,7 @@ class TextServiceImpl : public TextService,
const base::string16& text,
int32 selection_start,
int32 selection_end,
- const std::vector<metro_viewer::UnderlineInfo>& underlines) OVERRIDE {
+ const std::vector<metro_viewer::UnderlineInfo>& underlines) override {
if (!delegate_)
return;
delegate_->OnCompositionChanged(text,
@@ -386,7 +386,7 @@ class TextServiceImpl : public TextService,
underlines);
}
- virtual void OnTextCommitted(const base::string16& text) OVERRIDE {
+ virtual void OnTextCommitted(const base::string16& text) override {
if (!delegate_)
return;
delegate_->OnTextCommitted(text);
@@ -413,7 +413,7 @@ class TextServiceImpl : public TextService,
}
virtual bool GetCompositionCharacterBounds(uint32 index,
- RECT* rect) OVERRIDE {
+ RECT* rect) override {
if (index >= composition_character_bounds_.size()) {
return false;
}
« no previous file with comments | « win8/metro_driver/ime/input_source.cc ('k') | win8/metro_driver/ime/text_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698