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

Side by Side Diff: chrome/browser/infobars/infobar_service.h

Issue 240193003: Move Infobars core files to the Infobars component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix components/OWNERS Created 6 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_INFOBARS_INFOBAR_SERVICE_H_ 5 #ifndef CHROME_BROWSER_INFOBARS_INFOBAR_SERVICE_H_
6 #define CHROME_BROWSER_INFOBARS_INFOBAR_SERVICE_H_ 6 #define CHROME_BROWSER_INFOBARS_INFOBAR_SERVICE_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
11 #include "chrome/browser/infobars/infobar_manager.h" 11 #include "components/infobars/core/infobar_manager.h"
12 #include "content/public/browser/web_contents_observer.h" 12 #include "content/public/browser/web_contents_observer.h"
13 #include "content/public/browser/web_contents_user_data.h" 13 #include "content/public/browser/web_contents_user_data.h"
14 14
15 namespace content { 15 namespace content {
16 struct LoadCommittedDetails; 16 struct LoadCommittedDetails;
17 class WebContents; 17 class WebContents;
18 } 18 }
19 19
20 class InfoBar; 20 class InfoBar;
21 21
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 64
65 // Message handlers. 65 // Message handlers.
66 void OnDidBlockDisplayingInsecureContent(); 66 void OnDidBlockDisplayingInsecureContent();
67 void OnDidBlockRunningInsecureContent(); 67 void OnDidBlockRunningInsecureContent();
68 68
69 69
70 DISALLOW_COPY_AND_ASSIGN(InfoBarService); 70 DISALLOW_COPY_AND_ASSIGN(InfoBarService);
71 }; 71 };
72 72
73 #endif // CHROME_BROWSER_INFOBARS_INFOBAR_SERVICE_H_ 73 #endif // CHROME_BROWSER_INFOBARS_INFOBAR_SERVICE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698