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

Side by Side Diff: chrome/browser/chromeos/customization_document.h

Issue 623293003: replace OVERRIDE and FINAL with override and final in chrome/browser/chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: run git cl format on echo_dialog_view.h 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_CHROMEOS_CUSTOMIZATION_DOCUMENT_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_CUSTOMIZATION_DOCUMENT_H_
6 #define CHROME_BROWSER_CHROMEOS_CUSTOMIZATION_DOCUMENT_H_ 6 #define CHROME_BROWSER_CHROMEOS_CUSTOMIZATION_DOCUMENT_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 215
216 // C-tor for test construction. 216 // C-tor for test construction.
217 explicit ServicesCustomizationDocument(const std::string& manifest); 217 explicit ServicesCustomizationDocument(const std::string& manifest);
218 218
219 virtual ~ServicesCustomizationDocument(); 219 virtual ~ServicesCustomizationDocument();
220 220
221 // Save applied state in machine settings. 221 // Save applied state in machine settings.
222 static void SetApplied(bool val); 222 static void SetApplied(bool val);
223 223
224 // Overriden from CustomizationDocument: 224 // Overriden from CustomizationDocument:
225 virtual bool LoadManifestFromString(const std::string& manifest) OVERRIDE; 225 virtual bool LoadManifestFromString(const std::string& manifest) override;
226 226
227 // Overriden from net::URLFetcherDelegate: 227 // Overriden from net::URLFetcherDelegate:
228 virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE; 228 virtual void OnURLFetchComplete(const net::URLFetcher* source) override;
229 229
230 // Initiate file fetching. Wait for online status. 230 // Initiate file fetching. Wait for online status.
231 void StartFileFetch(); 231 void StartFileFetch();
232 232
233 // Initiate file fetching. Don't wait for online status. 233 // Initiate file fetching. Don't wait for online status.
234 void DoStartFileFetch(); 234 void DoStartFileFetch();
235 235
236 // Executes on FILE thread and reads file to string. 236 // Executes on FILE thread and reads file to string.
237 static void ReadFileInBackground( 237 static void ReadFileInBackground(
238 base::WeakPtr<ServicesCustomizationDocument> self, 238 base::WeakPtr<ServicesCustomizationDocument> self,
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 325
326 // Weak factory for callbacks. 326 // Weak factory for callbacks.
327 base::WeakPtrFactory<ServicesCustomizationDocument> weak_ptr_factory_; 327 base::WeakPtrFactory<ServicesCustomizationDocument> weak_ptr_factory_;
328 328
329 DISALLOW_COPY_AND_ASSIGN(ServicesCustomizationDocument); 329 DISALLOW_COPY_AND_ASSIGN(ServicesCustomizationDocument);
330 }; 330 };
331 331
332 } // namespace chromeos 332 } // namespace chromeos
333 333
334 #endif // CHROME_BROWSER_CHROMEOS_CUSTOMIZATION_DOCUMENT_H_ 334 #endif // CHROME_BROWSER_CHROMEOS_CUSTOMIZATION_DOCUMENT_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/chrome_browser_main_chromeos.h ('k') | chrome/browser/chromeos/customization_document.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698