Index: components/infobars/core/infobar_manager.h |
diff --git a/chrome/browser/infobars/infobar_manager.h b/components/infobars/core/infobar_manager.h |
similarity index 93% |
rename from chrome/browser/infobars/infobar_manager.h |
rename to components/infobars/core/infobar_manager.h |
index f11768c59ae361ba20f6d35b56c36811097715bf..747d5acb79be1893a33ed3503bc0c5fa068dc5e6 100644 |
--- a/chrome/browser/infobars/infobar_manager.h |
+++ b/components/infobars/core/infobar_manager.h |
@@ -2,19 +2,21 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#ifndef CHROME_BROWSER_INFOBARS_INFOBAR_MANAGER_H_ |
-#define CHROME_BROWSER_INFOBARS_INFOBAR_MANAGER_H_ |
+#ifndef COMPONENTS_INFOBARS_CORE_INFOBAR_MANAGER_H_ |
+#define COMPONENTS_INFOBARS_CORE_INFOBAR_MANAGER_H_ |
#include <vector> |
#include "base/memory/scoped_ptr.h" |
#include "base/observer_list.h" |
-#include "chrome/browser/infobars/infobar_delegate.h" |
+#include "components/infobars/core/infobar_delegate.h" |
namespace content { |
class WebContents; |
} |
+namespace infobars { |
+ |
class InfoBar; |
// Provides access to creating, removing and enumerating info bars |
@@ -117,4 +119,6 @@ class InfoBarManager { |
DISALLOW_COPY_AND_ASSIGN(InfoBarManager); |
}; |
-#endif // CHROME_BROWSER_INFOBARS_INFOBAR_MANAGER_H_ |
+} // namespace infobars |
+ |
+#endif // COMPONENTS_INFOBARS_CORE_INFOBAR_MANAGER_H_ |