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

Side by Side Diff: chrome/browser/blocked_content_container.h

Issue 6598086: Update more includes that were pointing to the old locations. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync Created 9 years, 9 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 // Defines the public interface for the blocked content (including popup) 5 // Defines the public interface for the blocked content (including popup)
6 // notifications. This interface should only be used by TabContents. Users and 6 // notifications. This interface should only be used by TabContents. Users and
7 // subclasses of TabContents should use the appropriate methods on TabContents 7 // subclasses of TabContents should use the appropriate methods on TabContents
8 // to access information about blocked content. 8 // to access information about blocked content.
9 9
10 #ifndef CHROME_BROWSER_BLOCKED_CONTENT_CONTAINER_H_ 10 #ifndef CHROME_BROWSER_BLOCKED_CONTENT_CONTAINER_H_
11 #define CHROME_BROWSER_BLOCKED_CONTENT_CONTAINER_H_ 11 #define CHROME_BROWSER_BLOCKED_CONTENT_CONTAINER_H_
12 #pragma once 12 #pragma once
13 13
14 #include <vector> 14 #include <vector>
15 15
16 #include "chrome/browser/tab_contents/tab_contents_delegate.h" 16 #include "content/browser/tab_contents/tab_contents_delegate.h"
17 17
18 // Takes ownership of TabContents that are unrequested popup windows. 18 // Takes ownership of TabContents that are unrequested popup windows.
19 class BlockedContentContainer : public TabContentsDelegate { 19 class BlockedContentContainer : public TabContentsDelegate {
20 public: 20 public:
21 // Creates a container for a certain TabContents: 21 // Creates a container for a certain TabContents:
22 explicit BlockedContentContainer(TabContents* owner); 22 explicit BlockedContentContainer(TabContents* owner);
23 virtual ~BlockedContentContainer(); 23 virtual ~BlockedContentContainer();
24 24
25 // Adds a TabContents to this container. |bounds| are the window bounds 25 // Adds a TabContents to this container. |bounds| are the window bounds
26 // requested for the TabContents. 26 // requested for the TabContents.
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 // The TabContents that owns and constrains this BlockedContentContainer. 100 // The TabContents that owns and constrains this BlockedContentContainer.
101 TabContents* owner_; 101 TabContents* owner_;
102 102
103 // Information about all blocked contents. 103 // Information about all blocked contents.
104 BlockedContents blocked_contents_; 104 BlockedContents blocked_contents_;
105 105
106 DISALLOW_IMPLICIT_CONSTRUCTORS(BlockedContentContainer); 106 DISALLOW_IMPLICIT_CONSTRUCTORS(BlockedContentContainer);
107 }; 107 };
108 108
109 #endif // CHROME_BROWSER_BLOCKED_CONTENT_CONTAINER_H_ 109 #endif // CHROME_BROWSER_BLOCKED_CONTENT_CONTAINER_H_
OLDNEW
« no previous file with comments | « chrome/browser/automation/testing_automation_provider.cc ('k') | chrome/browser/bookmarks/bookmark_context_menu_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698