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

Side by Side Diff: chrome/browser/autocomplete/shortcuts_backend.h

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_AUTOCOMPLETE_SHORTCUTS_BACKEND_H_ 5 #ifndef CHROME_BROWSER_AUTOCOMPLETE_SHORTCUTS_BACKEND_H_
6 #define CHROME_BROWSER_AUTOCOMPLETE_SHORTCUTS_BACKEND_H_ 6 #define CHROME_BROWSER_AUTOCOMPLETE_SHORTCUTS_BACKEND_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 }; 90 };
91 91
92 typedef std::map<std::string, ShortcutMap::iterator> GuidMap; 92 typedef std::map<std::string, ShortcutMap::iterator> GuidMap;
93 93
94 virtual ~ShortcutsBackend(); 94 virtual ~ShortcutsBackend();
95 95
96 static history::ShortcutsDatabase::Shortcut::MatchCore MatchToMatchCore( 96 static history::ShortcutsDatabase::Shortcut::MatchCore MatchToMatchCore(
97 const AutocompleteMatch& match, Profile* profile); 97 const AutocompleteMatch& match, Profile* profile);
98 98
99 // RefcountedKeyedService: 99 // RefcountedKeyedService:
100 virtual void ShutdownOnUIThread() OVERRIDE; 100 virtual void ShutdownOnUIThread() override;
101 101
102 // content::NotificationObserver: 102 // content::NotificationObserver:
103 virtual void Observe(int type, 103 virtual void Observe(int type,
104 const content::NotificationSource& source, 104 const content::NotificationSource& source,
105 const content::NotificationDetails& details) OVERRIDE; 105 const content::NotificationDetails& details) override;
106 106
107 // Internal initialization of the back-end. Posted by Init() to the DB thread. 107 // Internal initialization of the back-end. Posted by Init() to the DB thread.
108 // On completion posts InitCompleted() back to UI thread. 108 // On completion posts InitCompleted() back to UI thread.
109 void InitInternal(); 109 void InitInternal();
110 110
111 // Finishes initialization on UI thread, notifies all observers. 111 // Finishes initialization on UI thread, notifies all observers.
112 void InitCompleted(); 112 void InitCompleted();
113 113
114 // Adds the Shortcut to the database. 114 // Adds the Shortcut to the database.
115 bool AddShortcut(const history::ShortcutsDatabase::Shortcut& shortcut); 115 bool AddShortcut(const history::ShortcutsDatabase::Shortcut& shortcut);
(...skipping 29 matching lines...) Expand all
145 145
146 content::NotificationRegistrar notification_registrar_; 146 content::NotificationRegistrar notification_registrar_;
147 147
148 // For some unit-test only. 148 // For some unit-test only.
149 bool no_db_access_; 149 bool no_db_access_;
150 150
151 DISALLOW_COPY_AND_ASSIGN(ShortcutsBackend); 151 DISALLOW_COPY_AND_ASSIGN(ShortcutsBackend);
152 }; 152 };
153 153
154 #endif // CHROME_BROWSER_AUTOCOMPLETE_SHORTCUTS_BACKEND_H_ 154 #endif // CHROME_BROWSER_AUTOCOMPLETE_SHORTCUTS_BACKEND_H_
OLDNEW
« no previous file with comments | « chrome/browser/autocomplete/search_provider_unittest.cc ('k') | chrome/browser/autocomplete/shortcuts_backend_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698