Fix favicon_commands.h clang build warnings.
authorPiotr Tworek <p.tworek@samsung.com>
Thu, 12 Mar 2015 13:48:18 +0000 (14:48 +0100)
committerYoungsoo Choi <kenshin.choi@samsung.com>
Tue, 10 Jul 2018 06:57:09 +0000 (06:57 +0000)
Chromium coding style requires overriding methods to be marked with
override keyword. Clang chromium-style also complains about. Let's add
it to make our lives easier.

Change-Id: I87ff1cc77742a7e8e20f10c6dbba792c3ee590f8
Signed-off-by: Piotr Tworek <p.tworek@samsung.com>
tizen_src/ewk/efl_integration/browser/favicon/favicon_commands.h

index 3e0ef68..b6c5bfd 100644 (file)
@@ -66,29 +66,29 @@ class Command {
 class InitDatabaseCommand : public Command {
  public:
   InitDatabaseCommand(FaviconDatabasePrivate *db);
-  bool execute() { return sqlExecute(); }
-  bool sqlExecute();
+  bool execute() override { return sqlExecute(); }
+  bool sqlExecute() override;
 };
 
 class LoadDatabaseCommand : public Command {
  public:
   LoadDatabaseCommand(FaviconDatabasePrivate *db);
-  bool execute() { return sqlExecute(); }
-  bool sqlExecute();
+  bool execute() override { return sqlExecute(); }
+  bool sqlExecute() override;
 };
 
 class ClearDatabaseCommand : public Command {
  public:
   ClearDatabaseCommand(FaviconDatabasePrivate *db);
-  bool execute();
-  bool sqlExecute();
+  bool execute() override;
+  bool sqlExecute() override;
 };
 
 class InsertFaviconURLCommand : public Command {
  public:
   InsertFaviconURLCommand(FaviconDatabasePrivate *db, const GURL &pageUrl, const GURL &faviconUrl);
-  bool execute();
-  bool sqlExecute();
+  bool execute() override;
+  bool sqlExecute() override;
  private:
   std::string m_pageUrl;
   std::string m_faviconUrl;
@@ -97,8 +97,8 @@ class InsertFaviconURLCommand : public Command {
 class UpdateFaviconURLCommand : public Command {
  public:
   UpdateFaviconURLCommand(FaviconDatabasePrivate *db, const GURL &pageUrl, const GURL &faviconUrl);
-  bool execute();
-  bool sqlExecute();
+  bool execute() override;
+  bool sqlExecute() override;
  private:
   std::string m_pageUrl;
   std::string m_faviconUrl;
@@ -107,8 +107,8 @@ class UpdateFaviconURLCommand : public Command {
 class InsertBitmapCommand : public Command {
  public:
   InsertBitmapCommand(FaviconDatabasePrivate *db, const GURL &faviconUrl, const SkBitmap &bitmap);
-  bool execute();
-  bool sqlExecute();
+  bool execute() override;
+  bool sqlExecute() override;
  private:
   std::string m_faviconUrl;
   SkBitmap m_bitmap;
@@ -117,8 +117,8 @@ class InsertBitmapCommand : public Command {
 class UpdateBitmapCommand : public Command {
  public:
   UpdateBitmapCommand(FaviconDatabasePrivate *db, const GURL &faviconUrl, const SkBitmap &bitmap);
-  bool execute();
-  bool sqlExecute();
+  bool execute() override;
+  bool sqlExecute() override;
  private:
   std::string m_faviconUrl;
   SkBitmap m_bitmap;
@@ -127,8 +127,8 @@ class UpdateBitmapCommand : public Command {
 class RemoveBitmapCommand : public Command {
  public:
   RemoveBitmapCommand(FaviconDatabasePrivate *db, const GURL &faviconUrl);
-  bool execute();
-  bool sqlExecute();
+  bool execute() override;
+  bool sqlExecute() override;
  private:
   std::string m_faviconUrl;
 };