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

Side by Side Diff: chrome/browser/profile_resetter/automatic_profile_resetter.h

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_PROFILE_RESETTER_AUTOMATIC_PROFILE_RESETTER_H_ 5 #ifndef CHROME_BROWSER_PROFILE_RESETTER_AUTOMATIC_PROFILE_RESETTER_H_
6 #define CHROME_BROWSER_PROFILE_RESETTER_AUTOMATIC_PROFILE_RESETTER_H_ 6 #define CHROME_BROWSER_PROFILE_RESETTER_AUTOMATIC_PROFILE_RESETTER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 // Should be called before Activate(). 132 // Should be called before Activate().
133 void SetDelegateForTesting( 133 void SetDelegateForTesting(
134 scoped_ptr<AutomaticProfileResetterDelegate> delegate); 134 scoped_ptr<AutomaticProfileResetterDelegate> delegate);
135 135
136 // Should be called before Activate(). Sets the task runner to be used to post 136 // Should be called before Activate(). Sets the task runner to be used to post
137 // task |PrepareEvaluationFlow| in a delayed manner. 137 // task |PrepareEvaluationFlow| in a delayed manner.
138 void SetTaskRunnerForWaitingForTesting( 138 void SetTaskRunnerForWaitingForTesting(
139 const scoped_refptr<base::TaskRunner>& task_runner); 139 const scoped_refptr<base::TaskRunner>& task_runner);
140 140
141 // KeyedService: 141 // KeyedService:
142 virtual void Shutdown() OVERRIDE; 142 virtual void Shutdown() override;
143 143
144 private: 144 private:
145 class InputBuilder; 145 class InputBuilder;
146 struct EvaluationResults; 146 struct EvaluationResults;
147 147
148 enum State { 148 enum State {
149 STATE_UNINITIALIZED, 149 STATE_UNINITIALIZED,
150 STATE_INITIALIZED, 150 STATE_INITIALIZED,
151 STATE_DISABLED, 151 STATE_DISABLED,
152 STATE_WAITING_ON_DEPENDENCIES, 152 STATE_WAITING_ON_DEPENDENCIES,
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 259
260 scoped_ptr<AutomaticProfileResetterDelegate> delegate_; 260 scoped_ptr<AutomaticProfileResetterDelegate> delegate_;
261 scoped_refptr<base::TaskRunner> task_runner_for_waiting_; 261 scoped_refptr<base::TaskRunner> task_runner_for_waiting_;
262 262
263 base::WeakPtrFactory<AutomaticProfileResetter> weak_ptr_factory_; 263 base::WeakPtrFactory<AutomaticProfileResetter> weak_ptr_factory_;
264 264
265 DISALLOW_COPY_AND_ASSIGN(AutomaticProfileResetter); 265 DISALLOW_COPY_AND_ASSIGN(AutomaticProfileResetter);
266 }; 266 };
267 267
268 #endif // CHROME_BROWSER_PROFILE_RESETTER_AUTOMATIC_PROFILE_RESETTER_H_ 268 #endif // CHROME_BROWSER_PROFILE_RESETTER_AUTOMATIC_PROFILE_RESETTER_H_
OLDNEW
« no previous file with comments | « chrome/browser/process_singleton_posix.cc ('k') | chrome/browser/profile_resetter/automatic_profile_resetter_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698