Changeset 106375 in webkit


Ignore:
Timestamp:
Jan 31, 2012 11:58:07 AM (12 years ago)
Author:
ap@apple.com
Message:

PluginProcess should be able to use remote open and save panels
https://bugs.webkit.org/show_bug.cgi?id=77461
<rdar://problem/10783615>

Reviewed by Mark Rowe.

  • PluginProcess/mac/PluginProcess.entitlements: Added.
  • PluginProcess/mac/add-entitlements.sh: Added.
  • WebKit2.xcodeproj/project.pbxproj: Add appropriate entitlement, plus ad hoc binary signing for it to work.
Location:
trunk/Source/WebKit2
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r106362 r106375  
     12012-01-31  Alexey Proskuryakov  <ap@apple.com>
     2
     3        PluginProcess should be able to use remote open and save panels
     4        https://bugs.webkit.org/show_bug.cgi?id=77461
     5        <rdar://problem/10783615>
     6
     7        Reviewed by Mark Rowe.
     8
     9        * PluginProcess/mac/PluginProcess.entitlements: Added.
     10        * PluginProcess/mac/add-entitlements.sh: Added.
     11        * WebKit2.xcodeproj/project.pbxproj:
     12        Add appropriate entitlement, plus ad hoc binary signing for it to work.
     13
    1142012-01-31  Allan Sandfeld Jensen  <allan.jensen@nokia.com>
    215
  • trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj

    r105475 r106375  
    19251925                E134F01512EA5D11004EC58D /* WKPrintingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKPrintingView.h; sourceTree = "<group>"; };
    19261926                E134F01912EA5D99004EC58D /* WKPrintingView.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = WKPrintingView.mm; sourceTree = "<group>"; };
     1927                E14E99F814D879B4001D221F /* PluginProcess.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = PluginProcess.entitlements; sourceTree = "<group>"; };
     1928                E14E99F914D879C9001D221F /* add-entitlements.sh */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = "add-entitlements.sh"; sourceTree = "<group>"; };
    19271929                E179FD9B134D38060015B883 /* ArgumentCodersMac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ArgumentCodersMac.h; sourceTree = "<group>"; };
    19281930                E179FD9E134D38250015B883 /* ArgumentCodersMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ArgumentCodersMac.mm; sourceTree = "<group>"; };
     
    21132115                        children = (
    21142116                                1A2D91A51281D739001EB962 /* PluginControllerProxyMac.mm */,
     2117                                E14E99F814D879B4001D221F /* PluginProcess.entitlements */,
    21152118                                1AA4792212A59FD9008236C3 /* PluginProcessMac.mm */,
    21162119                                1A0EC802124BD41E007EF4A5 /* PluginProcessMainMac.mm */,
    21172120                                1AC25F8912A48E0300BD2671 /* PluginProcessShim.h */,
    21182121                                1AC25F8A12A48E0300BD2671 /* PluginProcessShim.mm */,
     2122                                E14E99F914D879C9001D221F /* add-entitlements.sh */,
    21192123                        );
    21202124                        path = mac;
     
    42204224                                BCDE093A13272496001259FB /* Sources */,
    42214225                                BCDE093C13272496001259FB /* Copy Plug-in Process Shim */,
     4226                                E14E99FA14D879DB001D221F /* Add Entitlements */,
    42224227                        );
    42234228                        buildRules = (
     
    43964401                        shellPath = /bin/sh;
    43974402                        shellScript = "mkdir -p \"${BUILT_PRODUCTS_DIR}/DerivedSources/WebKit2\"\ncd \"${BUILT_PRODUCTS_DIR}/DerivedSources/WebKit2\"\n\nexport WebKit2=\"${SRCROOT}\"\n\nif [ \"${ACTION}\" = \"build\" -o \"${ACTION}\" = \"install\" -o \"${ACTION}\" = \"installhdrs\" ]; then\n    make --no-builtin-rules -f \"${WebKit2}/DerivedSources.make\" -j `/usr/sbin/sysctl -n hw.availcpu`\nfi\n";
     4403                };
     4404                E14E99FA14D879DB001D221F /* Add Entitlements */ = {
     4405                        isa = PBXShellScriptBuildPhase;
     4406                        buildActionMask = 2147483647;
     4407                        files = (
     4408                        );
     4409                        inputPaths = (
     4410                        );
     4411                        name = "Add Entitlements";
     4412                        outputPaths = (
     4413                        );
     4414                        runOnlyForDeploymentPostprocessing = 0;
     4415                        shellPath = /bin/sh;
     4416                        shellScript = "PluginProcess/mac/add-entitlements.sh";
     4417                        showEnvVarsInLog = 0;
    43984418                };
    43994419/* End PBXShellScriptBuildPhase section */
Note: See TracChangeset for help on using the changeset viewer.