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

Unified Diff: chrome/browser/geolocation/geolocation_confirm_infobar_delegate.h

Issue 11785030: GeolocationConfirmInfoBarDelegate* -> GeolocationInfoBarDelegate*, for consistency with other infob… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 8 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 | « no previous file | chrome/browser/geolocation/geolocation_confirm_infobar_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/geolocation/geolocation_confirm_infobar_delegate.h
===================================================================
--- chrome/browser/geolocation/geolocation_confirm_infobar_delegate.h (revision 194422)
+++ chrome/browser/geolocation/geolocation_confirm_infobar_delegate.h (working copy)
@@ -1,65 +0,0 @@
-// Copyright (c) 2012 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_BROWSER_GEOLOCATION_GEOLOCATION_CONFIRM_INFOBAR_DELEGATE_H_
-#define CHROME_BROWSER_GEOLOCATION_GEOLOCATION_CONFIRM_INFOBAR_DELEGATE_H_
-
-#include "chrome/browser/geolocation/geolocation_permission_request_id.h"
-#include "chrome/browser/infobars/confirm_infobar_delegate.h"
-#include "googleurl/src/gurl.h"
-
-#include <string>
-
-class GeolocationInfoBarQueueController;
-class InfoBarService;
-
-// GeolocationInfoBarDelegates are created by the
-// GeolocationInfoBarQueueController to control the display
-// and handling of geolocation permission infobars to the user.
-class GeolocationConfirmInfoBarDelegate : public ConfirmInfoBarDelegate {
- public:
- // Creates a geolocation delegate and adds it to |infobar_service|. Returns
- // the delegate if it was successfully added.
- static InfoBarDelegate* Create(InfoBarService* infobar_service,
- GeolocationInfoBarQueueController* controller,
- const GeolocationPermissionRequestID& id,
- const GURL& requesting_frame,
- const std::string& display_languages);
-
- protected:
- GeolocationConfirmInfoBarDelegate(
- InfoBarService* infobar_service,
- GeolocationInfoBarQueueController* controller,
- const GeolocationPermissionRequestID& id,
- const GURL& requesting_frame,
- const std::string& display_languages);
-
- const GeolocationPermissionRequestID& id() const { return id_; }
-
- // ConfirmInfoBarDelegate:
- virtual gfx::Image* GetIcon() const OVERRIDE;
- virtual Type GetInfoBarType() const OVERRIDE;
- virtual bool ShouldExpireInternal(
- const content::LoadCommittedDetails& details) const OVERRIDE;
- virtual string16 GetMessageText() const OVERRIDE;
- virtual string16 GetButtonLabel(InfoBarButton button) const OVERRIDE;
- virtual bool Accept() OVERRIDE;
- virtual bool Cancel() OVERRIDE;
- virtual string16 GetLinkText() const OVERRIDE;
- virtual bool LinkClicked(WindowOpenDisposition disposition) OVERRIDE;
-
- // Call back to the controller, to inform of the user's decision.
- void SetPermission(bool update_content_setting, bool allowed);
-
- private:
- GeolocationInfoBarQueueController* controller_;
- const GeolocationPermissionRequestID id_;
- GURL requesting_frame_;
- int contents_unique_id_;
- std::string display_languages_;
-
- DISALLOW_IMPLICIT_CONSTRUCTORS(GeolocationConfirmInfoBarDelegate);
-};
-
-#endif // CHROME_BROWSER_GEOLOCATION_GEOLOCATION_CONFIRM_INFOBAR_DELEGATE_H_
« no previous file with comments | « no previous file | chrome/browser/geolocation/geolocation_confirm_infobar_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698