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

Unified Diff: chrome/renderer/geolocation_dispatcher.h

Issue 6703003: Move a bunch of html5 renderer code to content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/renderer/device_orientation_dispatcher.cc ('k') | chrome/renderer/geolocation_dispatcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/geolocation_dispatcher.h
===================================================================
--- chrome/renderer/geolocation_dispatcher.h (revision 78436)
+++ chrome/renderer/geolocation_dispatcher.h (working copy)
@@ -1,66 +0,0 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_RENDERER_GEOLOCATION_DISPATCHER_H_
-#define CHROME_RENDERER_GEOLOCATION_DISPATCHER_H_
-#pragma once
-
-#include "base/scoped_ptr.h"
-#include "chrome/renderer/render_view_observer.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/WebGeolocationClient.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/WebGeolocationController.h"
-
-struct Geoposition;
-
-namespace WebKit {
-class WebGeolocationController;
-class WebGeolocationPermissionRequest;
-class WebGeolocationPermissionRequestManager;
-class WebGeolocationPosition;
-class WebSecurityOrigin;
-}
-
-// GeolocationDispatcher is a delegate for Geolocation messages used by
-// WebKit.
-// It's the complement of GeolocationDispatcherHost (owned by RenderViewHost).
-class GeolocationDispatcher : public RenderViewObserver,
- public WebKit::WebGeolocationClient {
- public:
- explicit GeolocationDispatcher(RenderView* render_view);
- virtual ~GeolocationDispatcher();
-
- private:
- // RenderView::Observer implementation.
- virtual bool OnMessageReceived(const IPC::Message& message);
-
- // WebGeolocationClient
- virtual void geolocationDestroyed();
- virtual void startUpdating();
- virtual void stopUpdating();
- virtual void setEnableHighAccuracy(bool enable_high_accuracy);
- virtual void setController(WebKit::WebGeolocationController* controller);
- virtual bool lastPosition(WebKit::WebGeolocationPosition& position);
- virtual void requestPermission(
- const WebKit::WebGeolocationPermissionRequest& permissionRequest);
- virtual void cancelPermissionRequest(
- const WebKit::WebGeolocationPermissionRequest& permissionRequest);
-
- // Permission for using geolocation has been set.
- void OnGeolocationPermissionSet(int bridge_id, bool is_allowed);
-
- // We have an updated geolocation position or error code.
- void OnGeolocationPositionUpdated(const Geoposition& geoposition);
-
- // The controller_ is valid for the lifetime of the underlying
- // WebCore::GeolocationController. geolocationDestroyed() is
- // invoked when the underlying object is destroyed.
- scoped_ptr< WebKit::WebGeolocationController> controller_;
-
- scoped_ptr<WebKit::WebGeolocationPermissionRequestManager>
- pending_permissions_;
- bool enable_high_accuracy_;
- bool updating_;
-};
-
-#endif // CHROME_RENDERER_GEOLOCATION_DISPATCHER_H_
« no previous file with comments | « chrome/renderer/device_orientation_dispatcher.cc ('k') | chrome/renderer/geolocation_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698