OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ |
6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
13 #include "base/ref_counted.h" | 13 #include "base/ref_counted.h" |
14 #include "base/string16.h" | 14 #include "base/string16.h" |
15 #include "chrome/common/content_settings_types.h" | 15 #include "chrome/common/content_settings_types.h" |
16 #include "chrome/common/dom_storage_common.h" | 16 #include "chrome/common/dom_storage_common.h" |
17 #include "chrome/common/translate_errors.h" | 17 #include "chrome/common/translate_errors.h" |
18 #include "chrome/common/view_types.h" | 18 #include "chrome/common/view_types.h" |
19 #include "chrome/common/window_container_type.h" | 19 #include "chrome/common/window_container_type.h" |
| 20 #include "net/base/cookie_monster.h" |
20 #include "net/base/load_states.h" | 21 #include "net/base/load_states.h" |
21 #include "third_party/WebKit/WebKit/chromium/public/WebDragOperation.h" | 22 #include "third_party/WebKit/WebKit/chromium/public/WebDragOperation.h" |
22 #include "third_party/WebKit/WebKit/chromium/public/WebPopupType.h" | 23 #include "third_party/WebKit/WebKit/chromium/public/WebPopupType.h" |
23 #include "webkit/glue/window_open_disposition.h" | 24 #include "webkit/glue/window_open_disposition.h" |
24 | 25 |
25 | 26 |
26 class AutomationResourceRoutingDelegate; | 27 class AutomationResourceRoutingDelegate; |
27 class BackgroundContents; | 28 class BackgroundContents; |
28 struct BookmarkDragData; | 29 struct BookmarkDragData; |
29 class BookmarkNode; | 30 class BookmarkNode; |
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
379 // ContentSettings------------------------------------------------------------ | 380 // ContentSettings------------------------------------------------------------ |
380 // Interface for content settings related events. | 381 // Interface for content settings related events. |
381 | 382 |
382 class ContentSettings { | 383 class ContentSettings { |
383 public: | 384 public: |
384 // Called when content in the current page was blocked due to the user's | 385 // Called when content in the current page was blocked due to the user's |
385 // content settings. | 386 // content settings. |
386 virtual void OnContentBlocked(ContentSettingsType type, | 387 virtual void OnContentBlocked(ContentSettingsType type, |
387 const std::string& resource_identifier) = 0; | 388 const std::string& resource_identifier) = 0; |
388 | 389 |
| 390 // Called when cookies for given URL where read either from within the |
| 391 // current page or while loading it. |blocked_by_policy| should be true, if |
| 392 // reading cookies was blocked due to the user's content settings. In that |
| 393 // case, this function should invoke OnContentBlocked. |
| 394 virtual void OnCookiesRead( |
| 395 const GURL& url, |
| 396 const net::CookieMonster::CookieList& cookie_list, |
| 397 bool blocked_by_policy) = 0; |
| 398 |
389 // Called when a specific cookie in the current page was accessed. | 399 // Called when a specific cookie in the current page was accessed. |
390 // |blocked_by_policy| should be true, if the cookie was blocked due to the | 400 // |blocked_by_policy| should be true, if the cookie was blocked due to the |
391 // user's content settings. In that case, this function should invoke | 401 // user's content settings. In that case, this function should invoke |
392 // OnContentBlocked. | 402 // OnContentBlocked. |
393 virtual void OnCookieAccessed(const GURL& url, | 403 virtual void OnCookieAccessed(const GURL& url, |
394 const std::string& cookie_line, | 404 const std::string& cookie_line, |
395 bool blocked_by_policy) = 0; | 405 bool blocked_by_policy) = 0; |
396 | 406 |
397 // Called when a specific indexed db factory in the current page was | 407 // Called when a specific indexed db factory in the current page was |
398 // accessed. If access was blocked due to the user's content settings, | 408 // accessed. If access was blocked due to the user's content settings, |
(...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
852 bool remember) {} | 862 bool remember) {} |
853 | 863 |
854 // Update the content restrictions, i.e. disable print/copy. | 864 // Update the content restrictions, i.e. disable print/copy. |
855 virtual void UpdateContentRestrictions(int restrictions) {} | 865 virtual void UpdateContentRestrictions(int restrictions) {} |
856 | 866 |
857 protected: | 867 protected: |
858 virtual ~RenderViewHostDelegate() {} | 868 virtual ~RenderViewHostDelegate() {} |
859 }; | 869 }; |
860 | 870 |
861 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ | 871 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ |
OLD | NEW |