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

Side by Side Diff: chrome/browser/content_settings/tab_specific_content_settings.cc

Issue 15658004: Split FileAPI code for common|common_child|renderer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 6 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 #include "chrome/browser/content_settings/tab_specific_content_settings.h" 5 #include "chrome/browser/content_settings/tab_specific_content_settings.h"
6 6
7 #include <list> 7 #include <list>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/lazy_instance.h" 10 #include "base/lazy_instance.h"
(...skipping 15 matching lines...) Expand all
26 #include "content/public/browser/browser_thread.h" 26 #include "content/public/browser/browser_thread.h"
27 #include "content/public/browser/navigation_controller.h" 27 #include "content/public/browser/navigation_controller.h"
28 #include "content/public/browser/navigation_details.h" 28 #include "content/public/browser/navigation_details.h"
29 #include "content/public/browser/navigation_entry.h" 29 #include "content/public/browser/navigation_entry.h"
30 #include "content/public/browser/notification_service.h" 30 #include "content/public/browser/notification_service.h"
31 #include "content/public/browser/render_view_host.h" 31 #include "content/public/browser/render_view_host.h"
32 #include "content/public/browser/render_view_host_observer.h" 32 #include "content/public/browser/render_view_host_observer.h"
33 #include "content/public/browser/web_contents.h" 33 #include "content/public/browser/web_contents.h"
34 #include "content/public/browser/web_contents_delegate.h" 34 #include "content/public/browser/web_contents_delegate.h"
35 #include "net/cookies/canonical_cookie.h" 35 #include "net/cookies/canonical_cookie.h"
36 #include "webkit/fileapi/file_system_types.h" 36 #include "webkit/common/fileapi/file_system_types.h"
37 37
38 using content::BrowserThread; 38 using content::BrowserThread;
39 using content::NavigationController; 39 using content::NavigationController;
40 using content::NavigationEntry; 40 using content::NavigationEntry;
41 using content::RenderViewHost; 41 using content::RenderViewHost;
42 using content::WebContents; 42 using content::WebContents;
43 43
44 DEFINE_WEB_CONTENTS_USER_DATA_KEY(TabSpecificContentSettings); 44 DEFINE_WEB_CONTENTS_USER_DATA_KEY(TabSpecificContentSettings);
45 45
46 namespace { 46 namespace {
(...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after
596 } 596 }
597 597
598 void TabSpecificContentSettings::RemoveSiteDataObserver( 598 void TabSpecificContentSettings::RemoveSiteDataObserver(
599 SiteDataObserver* observer) { 599 SiteDataObserver* observer) {
600 observer_list_.RemoveObserver(observer); 600 observer_list_.RemoveObserver(observer);
601 } 601 }
602 602
603 void TabSpecificContentSettings::NotifySiteDataObservers() { 603 void TabSpecificContentSettings::NotifySiteDataObservers() {
604 FOR_EACH_OBSERVER(SiteDataObserver, observer_list_, OnSiteDataAccessed()); 604 FOR_EACH_OBSERVER(SiteDataObserver, observer_list_, OnSiteDataAccessed());
605 } 605 }
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/extensions/file_manager/file_manager_util.cc ('k') | chrome/browser/devtools/devtools_file_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698