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

Side by Side Diff: content/renderer/render_frame_impl.h

Issue 303503008: Convert geolocation code to use RenderFrame instead of RenderView. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 6 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 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_RENDERER_RENDER_FRAME_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 47
48 namespace gfx { 48 namespace gfx {
49 class Point; 49 class Point;
50 class Range; 50 class Range;
51 class Rect; 51 class Rect;
52 } 52 }
53 53
54 namespace content { 54 namespace content {
55 55
56 class ChildFrameCompositingHelper; 56 class ChildFrameCompositingHelper;
57 class GeolocationDispatcher;
57 class MediaStreamClient; 58 class MediaStreamClient;
58 class NotificationProvider; 59 class NotificationProvider;
59 class PepperPluginInstanceImpl; 60 class PepperPluginInstanceImpl;
60 class RendererPpapiHost; 61 class RendererPpapiHost;
61 class RenderFrameObserver; 62 class RenderFrameObserver;
62 class RenderViewImpl; 63 class RenderViewImpl;
63 class RenderWidget; 64 class RenderWidget;
64 class RenderWidgetFullscreenPepper; 65 class RenderWidgetFullscreenPepper;
65 struct CustomContextMenuContext; 66 struct CustomContextMenuContext;
66 67
(...skipping 519 matching lines...) Expand 10 before | Expand all | Expand 10 after
586 // along with the RenderFrame automatically. This is why we just store weak 587 // along with the RenderFrame automatically. This is why we just store weak
587 // references. 588 // references.
588 589
589 // Holds a reference to the service which provides desktop notifications. 590 // Holds a reference to the service which provides desktop notifications.
590 NotificationProvider* notification_provider_; 591 NotificationProvider* notification_provider_;
591 592
592 // MediaStreamClient attached to this frame; lazily initialized. 593 // MediaStreamClient attached to this frame; lazily initialized.
593 MediaStreamClient* media_stream_client_; 594 MediaStreamClient* media_stream_client_;
594 blink::WebUserMediaClient* web_user_media_client_; 595 blink::WebUserMediaClient* web_user_media_client_;
595 596
597 // The geolocation dispatcher attached to this view, lazily initialized.
598 GeolocationDispatcher* geolocation_dispatcher_;
599
596 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 600 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
597 601
598 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 602 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
599 }; 603 };
600 604
601 } // namespace content 605 } // namespace content
602 606
603 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 607 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698