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

Unified Diff: content/browser/child_process_security_policy_impl.h

Issue 637183002: Replace FINAL and OVERRIDE with their C++11 counterparts in content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch 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 | « content/browser/cert_store_impl.h ('k') | content/browser/child_process_security_policy_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/child_process_security_policy_impl.h
diff --git a/content/browser/child_process_security_policy_impl.h b/content/browser/child_process_security_policy_impl.h
index 92c5f3d83e0f1d5889b8a60c6a7c23b17f0557eb..d0a172dbdf06b33ff8aeeee66052d95fe002a7e7 100644
--- a/content/browser/child_process_security_policy_impl.h
+++ b/content/browser/child_process_security_policy_impl.h
@@ -40,47 +40,47 @@ class CONTENT_EXPORT ChildProcessSecurityPolicyImpl
static ChildProcessSecurityPolicyImpl* GetInstance();
// ChildProcessSecurityPolicy implementation.
- virtual void RegisterWebSafeScheme(const std::string& scheme) OVERRIDE;
- virtual bool IsWebSafeScheme(const std::string& scheme) OVERRIDE;
- virtual void GrantReadFile(int child_id, const base::FilePath& file) OVERRIDE;
+ virtual void RegisterWebSafeScheme(const std::string& scheme) override;
+ virtual bool IsWebSafeScheme(const std::string& scheme) override;
+ virtual void GrantReadFile(int child_id, const base::FilePath& file) override;
virtual void GrantCreateReadWriteFile(int child_id,
- const base::FilePath& file) OVERRIDE;
- virtual void GrantCopyInto(int child_id, const base::FilePath& dir) OVERRIDE;
+ const base::FilePath& file) override;
+ virtual void GrantCopyInto(int child_id, const base::FilePath& dir) override;
virtual void GrantDeleteFrom(int child_id,
- const base::FilePath& dir) OVERRIDE;
+ const base::FilePath& dir) override;
virtual void GrantReadFileSystem(
int child_id,
- const std::string& filesystem_id) OVERRIDE;
+ const std::string& filesystem_id) override;
virtual void GrantWriteFileSystem(
int child_id,
- const std::string& filesystem_id) OVERRIDE;
+ const std::string& filesystem_id) override;
virtual void GrantCreateFileForFileSystem(
int child_id,
- const std::string& filesystem_id) OVERRIDE;
+ const std::string& filesystem_id) override;
virtual void GrantCreateReadWriteFileSystem(
int child_id,
- const std::string& filesystem_id) OVERRIDE;
+ const std::string& filesystem_id) override;
virtual void GrantCopyIntoFileSystem(
int child_id,
- const std::string& filesystem_id) OVERRIDE;
+ const std::string& filesystem_id) override;
virtual void GrantDeleteFromFileSystem(
int child_id,
- const std::string& filesystem_id) OVERRIDE;
- virtual void GrantScheme(int child_id, const std::string& scheme) OVERRIDE;
- virtual bool CanReadFile(int child_id, const base::FilePath& file) OVERRIDE;
+ const std::string& filesystem_id) override;
+ virtual void GrantScheme(int child_id, const std::string& scheme) override;
+ virtual bool CanReadFile(int child_id, const base::FilePath& file) override;
virtual bool CanCreateReadWriteFile(int child_id,
- const base::FilePath& file) OVERRIDE;
+ const base::FilePath& file) override;
virtual bool CanReadFileSystem(int child_id,
- const std::string& filesystem_id) OVERRIDE;
+ const std::string& filesystem_id) override;
virtual bool CanReadWriteFileSystem(
int child_id,
- const std::string& filesystem_id) OVERRIDE;
+ const std::string& filesystem_id) override;
virtual bool CanCopyIntoFileSystem(int child_id,
- const std::string& filesystem_id) OVERRIDE;
+ const std::string& filesystem_id) override;
virtual bool CanDeleteFromFileSystem(
int child_id,
- const std::string& filesystem_id) OVERRIDE;
- virtual bool HasWebUIBindings(int child_id) OVERRIDE;
+ const std::string& filesystem_id) override;
+ virtual bool HasWebUIBindings(int child_id) override;
// Pseudo schemes are treated differently than other schemes because they
// cannot be requested like normal URLs. There is no mechanism for revoking
« no previous file with comments | « content/browser/cert_store_impl.h ('k') | content/browser/child_process_security_policy_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698