Chromium Code Reviews| Index: components/favicon/core/favicon_driver.h |
| diff --git a/components/favicon/core/favicon_handler_delegate.h b/components/favicon/core/favicon_driver.h |
| similarity index 88% |
| rename from components/favicon/core/favicon_handler_delegate.h |
| rename to components/favicon/core/favicon_driver.h |
| index ae70a18a6f0f33eb461682f632ccf8f755a9820b..3cc28a206f1f9f8255f488235f21dacf801fdd24 100644 |
| --- a/components/favicon/core/favicon_handler_delegate.h |
| +++ b/components/favicon/core/favicon_driver.h |
| @@ -2,8 +2,8 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -#ifndef COMPONENTS_FAVICON_CORE_FAVICON_HANDLER_DELEGATE_H_ |
| -#define COMPONENTS_FAVICON_CORE_FAVICON_HANDLER_DELEGATE_H_ |
| +#ifndef COMPONENTS_FAVICON_CORE_FAVICON_DRIVER_H_ |
| +#define COMPONENTS_FAVICON_CORE_FAVICON_DRIVER_H_ |
| class GURL; |
| @@ -15,7 +15,7 @@ class NavigationEntry; |
| // This class provides a delegate interface for a FaviconHandler. It allows the |
|
blundell
2014/04/28 08:59:28
This comment should be updated: look at e.g. the c
jif
2014/04/28 10:07:20
Done.
|
| // FaviconHandler to ask its delegate for information or notify its delegate |
| // about changes. |
| -class FaviconHandlerDelegate { |
| +class FaviconDriver { |
| public: |
| // Returns the current NavigationEntry. |
| // TODO(jif): Abstract the NavigationEntry (crbug.com/359598). |
| @@ -40,4 +40,4 @@ class FaviconHandlerDelegate { |
| virtual bool IsOffTheRecord() = 0; |
| }; |
| -#endif // COMPONENTS_FAVICON_CORE_FAVICON_HANDLER_DELEGATE_H_ |
| +#endif // COMPONENTS_FAVICON_CORE_FAVICON_DRIVER_H_ |