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

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

Issue 258373002: Towards moving guest management to chrome: Introduce GuestViewManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge with ToT Created 6 years, 7 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
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_CHROME_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <utility> 10 #include <utility>
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 const std::string& partition_id) OVERRIDE; 58 const std::string& partition_id) OVERRIDE;
59 virtual void GetStoragePartitionConfigForSite( 59 virtual void GetStoragePartitionConfigForSite(
60 content::BrowserContext* browser_context, 60 content::BrowserContext* browser_context,
61 const GURL& site, 61 const GURL& site,
62 bool can_be_default, 62 bool can_be_default,
63 std::string* partition_domain, 63 std::string* partition_domain,
64 std::string* partition_name, 64 std::string* partition_name,
65 bool* in_memory) OVERRIDE; 65 bool* in_memory) OVERRIDE;
66 virtual content::WebContentsViewDelegate* GetWebContentsViewDelegate( 66 virtual content::WebContentsViewDelegate* GetWebContentsViewDelegate(
67 content::WebContents* web_contents) OVERRIDE; 67 content::WebContents* web_contents) OVERRIDE;
68 virtual content::BrowserPluginGuestManagerDelegate* GetGuestManagerDelegate(
69 content::BrowserContext* context) OVERRIDE;
68 virtual void GuestWebContentsCreated( 70 virtual void GuestWebContentsCreated(
69 content::SiteInstance* guest_site_instance, 71 content::SiteInstance* guest_site_instance,
70 content::WebContents* guest_web_contents, 72 content::WebContents* guest_web_contents,
71 content::WebContents* opener_web_contents, 73 content::WebContents* opener_web_contents,
72 content::BrowserPluginGuestDelegate** guest_delegate, 74 content::BrowserPluginGuestDelegate** guest_delegate,
73 scoped_ptr<base::DictionaryValue> extra_params) OVERRIDE; 75 scoped_ptr<base::DictionaryValue> extra_params) OVERRIDE;
74 virtual void GuestWebContentsAttached( 76 virtual void GuestWebContentsAttached(
75 content::WebContents* guest_web_contents, 77 content::WebContents* guest_web_contents,
76 content::WebContents* embedder_web_contents, 78 content::WebContents* embedder_web_contents,
77 const base::DictionaryValue& extra_params) OVERRIDE; 79 const base::DictionaryValue& extra_params) OVERRIDE;
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 permissions_policy_delegate_; 299 permissions_policy_delegate_;
298 300
299 friend class DisableWebRtcEncryptionFlagTest; 301 friend class DisableWebRtcEncryptionFlagTest;
300 302
301 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); 303 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient);
302 }; 304 };
303 305
304 } // namespace chrome 306 } // namespace chrome
305 307
306 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 308 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('j') | chrome/browser/guest_view/guest_view_base.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698