summaryrefslogtreecommitdiffstats
path: root/chrome/browser/profiles
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/profiles')
-rw-r--r--chrome/browser/profiles/off_the_record_profile_io_data.h9
-rw-r--r--chrome/browser/profiles/profile_impl_io_data.h9
-rw-r--r--chrome/browser/profiles/profile_io_data.h2
-rw-r--r--chrome/browser/profiles/profile_manager.h10
4 files changed, 16 insertions, 14 deletions
diff --git a/chrome/browser/profiles/off_the_record_profile_io_data.h b/chrome/browser/profiles/off_the_record_profile_io_data.h
index 79334a5..8e9964b 100644
--- a/chrome/browser/profiles/off_the_record_profile_io_data.h
+++ b/chrome/browser/profiles/off_the_record_profile_io_data.h
@@ -93,16 +93,17 @@ class OffTheRecordProfileIOData : public ProfileIOData {
OffTheRecordProfileIOData();
virtual ~OffTheRecordProfileIOData();
- virtual void LazyInitializeInternal(ProfileParams* profile_params) const;
+ virtual void LazyInitializeInternal(
+ ProfileParams* profile_params) const OVERRIDE;
virtual scoped_refptr<ChromeURLRequestContext> InitializeAppRequestContext(
scoped_refptr<ChromeURLRequestContext> main_context,
- const std::string& app_id) const;
+ const std::string& app_id) const OVERRIDE;
virtual scoped_refptr<ChromeURLRequestContext>
- AcquireMediaRequestContext() const;
+ AcquireMediaRequestContext() const OVERRIDE;
virtual scoped_refptr<ChromeURLRequestContext>
AcquireIsolatedAppRequestContext(
scoped_refptr<ChromeURLRequestContext> main_context,
- const std::string& app_id) const;
+ const std::string& app_id) const OVERRIDE;
mutable scoped_ptr<net::HttpServerPropertiesImpl> http_server_properties_;
diff --git a/chrome/browser/profiles/profile_impl_io_data.h b/chrome/browser/profiles/profile_impl_io_data.h
index 1a8d905..b766119 100644
--- a/chrome/browser/profiles/profile_impl_io_data.h
+++ b/chrome/browser/profiles/profile_impl_io_data.h
@@ -121,16 +121,17 @@ class ProfileImplIOData : public ProfileIOData {
ProfileImplIOData();
virtual ~ProfileImplIOData();
- virtual void LazyInitializeInternal(ProfileParams* profile_params) const;
+ virtual void LazyInitializeInternal(
+ ProfileParams* profile_params) const OVERRIDE;
virtual scoped_refptr<ChromeURLRequestContext> InitializeAppRequestContext(
scoped_refptr<ChromeURLRequestContext> main_context,
- const std::string& app_id) const;
+ const std::string& app_id) const OVERRIDE;
virtual scoped_refptr<ChromeURLRequestContext>
- AcquireMediaRequestContext() const;
+ AcquireMediaRequestContext() const OVERRIDE;
virtual scoped_refptr<ChromeURLRequestContext>
AcquireIsolatedAppRequestContext(
scoped_refptr<ChromeURLRequestContext> main_context,
- const std::string& app_id) const;
+ const std::string& app_id) const OVERRIDE;
// Lazy initialization params.
mutable scoped_ptr<LazyParams> lazy_params_;
diff --git a/chrome/browser/profiles/profile_io_data.h b/chrome/browser/profiles/profile_io_data.h
index a345366..7d16707 100644
--- a/chrome/browser/profiles/profile_io_data.h
+++ b/chrome/browser/profiles/profile_io_data.h
@@ -230,7 +230,7 @@ class ProfileIOData {
virtual ~ResourceContext();
private:
- virtual void EnsureInitialized() const;
+ virtual void EnsureInitialized() const OVERRIDE;
const ProfileIOData* const io_data_;
};
diff --git a/chrome/browser/profiles/profile_manager.h b/chrome/browser/profiles/profile_manager.h
index f12e80e..12c5d99 100644
--- a/chrome/browser/profiles/profile_manager.h
+++ b/chrome/browser/profiles/profile_manager.h
@@ -118,12 +118,12 @@ class ProfileManager : public base::NonThreadSafe,
// content::NotificationObserver implementation.
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details);
+ const content::NotificationDetails& details) OVERRIDE;
// BrowserList::Observer implementation.
- virtual void OnBrowserAdded(const Browser* browser);
- virtual void OnBrowserRemoved(const Browser* browser);
- virtual void OnBrowserSetLastActive(const Browser* browser);
+ virtual void OnBrowserAdded(const Browser* browser) OVERRIDE;
+ virtual void OnBrowserRemoved(const Browser* browser) OVERRIDE;
+ virtual void OnBrowserSetLastActive(const Browser* browser) OVERRIDE;
// Indicate that an import process will run for the next created Profile.
void SetWillImport();
@@ -156,7 +156,7 @@ class ProfileManager : public base::NonThreadSafe,
BrowserInit::IsFirstRun is_first_run);
// Profile::Delegate implementation:
- virtual void OnProfileCreated(Profile* profile, bool success);
+ virtual void OnProfileCreated(Profile* profile, bool success) OVERRIDE;
// Add or remove a profile launcher to/from the list of launchers waiting for
// new profiles to be created from the multi-profile menu.