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

Side by Side Diff: content/browser/tab_contents/tab_contents.h

Issue 6657003: Update a bunch of files to the new location of notification files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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 #ifndef CONTENT_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ 5 #ifndef CONTENT_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_
6 #define CONTENT_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ 6 #define CONTENT_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_
7 #pragma once 7 #pragma once
8 8
9 #include <deque> 9 #include <deque>
10 #include <map> 10 #include <map>
11 #include <string> 11 #include <string>
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/basictypes.h" 14 #include "base/basictypes.h"
15 #include "base/gtest_prod_util.h" 15 #include "base/gtest_prod_util.h"
16 #include "base/scoped_ptr.h" 16 #include "base/scoped_ptr.h"
17 #include "base/string16.h" 17 #include "base/string16.h"
18 #include "chrome/browser/download/save_package.h" 18 #include "chrome/browser/download/save_package.h"
19 #include "chrome/browser/extensions/image_loading_tracker.h" 19 #include "chrome/browser/extensions/image_loading_tracker.h"
20 #include "chrome/browser/fav_icon_helper.h" 20 #include "chrome/browser/fav_icon_helper.h"
21 #include "chrome/browser/prefs/pref_change_registrar.h" 21 #include "chrome/browser/prefs/pref_change_registrar.h"
22 #include "chrome/browser/tab_contents/tab_specific_content_settings.h" 22 #include "chrome/browser/tab_contents/tab_specific_content_settings.h"
23 #include "chrome/browser/ui/app_modal_dialogs/js_modal_dialog.h" 23 #include "chrome/browser/ui/app_modal_dialogs/js_modal_dialog.h"
24 #include "chrome/common/notification_registrar.h"
25 #include "chrome/common/property_bag.h" 24 #include "chrome/common/property_bag.h"
26 #include "chrome/common/renderer_preferences.h" 25 #include "chrome/common/renderer_preferences.h"
27 #include "chrome/common/translate_errors.h" 26 #include "chrome/common/translate_errors.h"
28 #include "chrome/common/web_apps.h" 27 #include "chrome/common/web_apps.h"
29 #include "content/browser/renderer_host/render_view_host_delegate.h" 28 #include "content/browser/renderer_host/render_view_host_delegate.h"
30 #include "content/browser/tab_contents/constrained_window.h" 29 #include "content/browser/tab_contents/constrained_window.h"
31 #include "content/browser/tab_contents/language_state.h" 30 #include "content/browser/tab_contents/language_state.h"
32 #include "content/browser/tab_contents/navigation_controller.h" 31 #include "content/browser/tab_contents/navigation_controller.h"
33 #include "content/browser/tab_contents/navigation_entry.h" 32 #include "content/browser/tab_contents/navigation_entry.h"
34 #include "content/browser/tab_contents/page_navigator.h" 33 #include "content/browser/tab_contents/page_navigator.h"
35 #include "content/browser/tab_contents/render_view_host_manager.h" 34 #include "content/browser/tab_contents/render_view_host_manager.h"
36 #include "content/browser/webui/web_ui_factory.h" 35 #include "content/browser/webui/web_ui_factory.h"
36 #include "content/common/notification_registrar.h"
37 #include "net/base/load_states.h" 37 #include "net/base/load_states.h"
38 #include "net/base/network_change_notifier.h" 38 #include "net/base/network_change_notifier.h"
39 #include "ui/gfx/native_widget_types.h" 39 #include "ui/gfx/native_widget_types.h"
40 40
41 #if defined(OS_WIN) 41 #if defined(OS_WIN)
42 #include "base/win/scoped_handle.h" 42 #include "base/win/scoped_handle.h"
43 #endif 43 #endif
44 44
45 namespace gfx { 45 namespace gfx {
46 class Rect; 46 class Rect;
(...skipping 1206 matching lines...) Expand 10 before | Expand all | Expand 10 after
1253 ObserverList<TabContentsObserver> observers_; 1253 ObserverList<TabContentsObserver> observers_;
1254 1254
1255 // Content restrictions, used to disable print/copy etc based on content's 1255 // Content restrictions, used to disable print/copy etc based on content's
1256 // (full-page plugins for now only) permissions. 1256 // (full-page plugins for now only) permissions.
1257 int content_restrictions_; 1257 int content_restrictions_;
1258 1258
1259 DISALLOW_COPY_AND_ASSIGN(TabContents); 1259 DISALLOW_COPY_AND_ASSIGN(TabContents);
1260 }; 1260 };
1261 1261
1262 #endif // CONTENT_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ 1262 #endif // CONTENT_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_
OLDNEW
« no previous file with comments | « content/browser/tab_contents/render_view_host_manager_unittest.cc ('k') | content/browser/tab_contents/tab_contents.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698