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

Side by Side Diff: content/shell/browser/shell_content_browser_client.h

Issue 489763002: MacViews: Gets a webview working in views_examples_with_content_exe Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase to master Created 6 years, 3 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_
6 #define CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ 6 #define CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 virtual bool IsHandledURL(const GURL& url) OVERRIDE; 50 virtual bool IsHandledURL(const GURL& url) OVERRIDE;
51 virtual void AppendExtraCommandLineSwitches(base::CommandLine* command_line, 51 virtual void AppendExtraCommandLineSwitches(base::CommandLine* command_line,
52 int child_process_id) OVERRIDE; 52 int child_process_id) OVERRIDE;
53 virtual void OverrideWebkitPrefs(RenderViewHost* render_view_host, 53 virtual void OverrideWebkitPrefs(RenderViewHost* render_view_host,
54 const GURL& url, 54 const GURL& url,
55 WebPreferences* prefs) OVERRIDE; 55 WebPreferences* prefs) OVERRIDE;
56 virtual void ResourceDispatcherHostCreated() OVERRIDE; 56 virtual void ResourceDispatcherHostCreated() OVERRIDE;
57 virtual AccessTokenStore* CreateAccessTokenStore() OVERRIDE; 57 virtual AccessTokenStore* CreateAccessTokenStore() OVERRIDE;
58 virtual std::string GetDefaultDownloadName() OVERRIDE; 58 virtual std::string GetDefaultDownloadName() OVERRIDE;
59 virtual WebContentsViewDelegate* GetWebContentsViewDelegate( 59 virtual WebContentsViewDelegate* GetWebContentsViewDelegate(
60 WebContents* web_contents) OVERRIDE; 60 WebContents* web_contents,
61 gfx::NativeView context) OVERRIDE;
61 virtual QuotaPermissionContext* CreateQuotaPermissionContext() OVERRIDE; 62 virtual QuotaPermissionContext* CreateQuotaPermissionContext() OVERRIDE;
62 virtual void RequestDesktopNotificationPermission( 63 virtual void RequestDesktopNotificationPermission(
63 const GURL& source_origin, 64 const GURL& source_origin,
64 RenderFrameHost* render_frame_host, 65 RenderFrameHost* render_frame_host,
65 const base::Callback<void(blink::WebNotificationPermission)>& callback) 66 const base::Callback<void(blink::WebNotificationPermission)>& callback)
66 OVERRIDE; 67 OVERRIDE;
67 virtual blink::WebNotificationPermission 68 virtual blink::WebNotificationPermission
68 CheckDesktopNotificationPermission( 69 CheckDesktopNotificationPermission(
69 const GURL& source_url, 70 const GURL& source_url,
70 ResourceContext* context, 71 ResourceContext* context,
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 resource_dispatcher_host_delegate_; 107 resource_dispatcher_host_delegate_;
107 108
108 base::FilePath webkit_source_dir_; 109 base::FilePath webkit_source_dir_;
109 110
110 ShellBrowserMainParts* shell_browser_main_parts_; 111 ShellBrowserMainParts* shell_browser_main_parts_;
111 }; 112 };
112 113
113 } // namespace content 114 } // namespace content
114 115
115 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ 116 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « content/public/browser/web_contents_view_delegate_mac.h ('k') | content/shell/browser/shell_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698