Changeset 46663 in webkit


Ignore:
Timestamp:
Jul 31, 2009 11:43:20 PM (15 years ago)
Author:
abarth@webkit.org
Message:

2009-07-31 Yong Li <yong.li@torchmobile.com>

Reviewed by Adam Barth.

Fix Geolocation permission problem
https://bugs.webkit.org/show_bug.cgi?id=26993

  • page/Geolocation.cpp: (WebCore::Geolocation::requestPermission):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r46661 r46663  
     12009-07-31  Yong Li  <yong.li@torchmobile.com>
     2
     3        Reviewed by Adam Barth.
     4
     5        Fix Geolocation permission problem
     6        https://bugs.webkit.org/show_bug.cgi?id=26993
     7
     8        * page/Geolocation.cpp:
     9        (WebCore::Geolocation::requestPermission):
     10
    1112009-07-31  Norbert Leser  <norbert.leser@nokia.com>
    212
  • trunk/WebCore/page/Geolocation.cpp

    r46642 r46663  
    11/*
    22 * Copyright (C) 2008, 2009 Apple Inc. All Rights Reserved.
     3 * Copyright (C) 2009 Torch Mobile, Inc.
    34 *
    45 * Redistribution and use in source and binary forms, with or without
     
    262263        return;
    263264   
     265    m_allowGeolocation = InProgress;
     266
    264267    // Ask the chrome: it maintains the geolocation challenge policy itself.
    265268    page->chrome()->requestGeolocationPermissionForFrame(m_frame, this);
    266    
    267     m_allowGeolocation = InProgress;
    268269}
    269270
Note: See TracChangeset for help on using the changeset viewer.