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

Side by Side Diff: content/browser/renderer_host/render_view_host_delegate.h

Issue 2528823002: Separate SwipeRefreshHandler and ContentViewCore (Closed)
Patch Set: Fix non-Android compile issue Created 4 years 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 CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <string> 10 #include <string>
11 11
12 #include "base/callback.h" 12 #include "base/callback.h"
13 #include "base/process/kill.h" 13 #include "base/process/kill.h"
14 #include "base/strings/string16.h" 14 #include "base/strings/string16.h"
15 #include "content/browser/dom_storage/session_storage_namespace_impl.h" 15 #include "content/browser/dom_storage/session_storage_namespace_impl.h"
16 #include "content/browser/renderer_host/render_view_host_delegate_view.h"
boliu 2016/12/03 01:05:28 forward declaration should still be good enough?
rlanday 2016/12/05 19:53:56 Oh right, this should go in content/browser/render
16 #include "content/common/content_export.h" 17 #include "content/common/content_export.h"
17 #include "net/base/load_states.h" 18 #include "net/base/load_states.h"
18 #include "third_party/WebKit/public/web/WebPopupType.h" 19 #include "third_party/WebKit/public/web/WebPopupType.h"
19 #include "ui/base/window_open_disposition.h" 20 #include "ui/base/window_open_disposition.h"
20 21
21 class GURL; 22 class GURL;
22 23
23 namespace IPC { 24 namespace IPC {
24 class Message; 25 class Message;
25 } 26 }
26 27
27 namespace gfx { 28 namespace gfx {
28 class Rect; 29 class Rect;
29 class Size; 30 class Size;
30 } 31 }
31 32
32 namespace content { 33 namespace content {
33 34
34 class BrowserContext; 35 class BrowserContext;
35 class FrameTree; 36 class FrameTree;
36 class PageState; 37 class PageState;
37 class RenderViewHost; 38 class RenderViewHost;
38 class RenderViewHostDelegateView;
39 class SessionStorageNamespace; 39 class SessionStorageNamespace;
40 class SiteInstance; 40 class SiteInstance;
41 class WebContents; 41 class WebContents;
42 struct RendererPreferences; 42 struct RendererPreferences;
43 43
44 namespace mojom { 44 namespace mojom {
45 class CreateNewWindowParams; 45 class CreateNewWindowParams;
46 } 46 }
47 47
48 // 48 //
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 // Whether download UI should be hidden. 230 // Whether download UI should be hidden.
231 virtual bool HideDownloadUI() const; 231 virtual bool HideDownloadUI() const;
232 232
233 protected: 233 protected:
234 virtual ~RenderViewHostDelegate() {} 234 virtual ~RenderViewHostDelegate() {}
235 }; 235 };
236 236
237 } // namespace content 237 } // namespace content
238 238
239 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ 239 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698